@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	font
------------------------------------------------------*/
html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
	font-weight: 400;
	letter-spacing: 0.1em;
}
.mincho {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
}
.tCenter {
  text-align: center !important;
}
.tLeft {
  text-align: left !important;
}
.tRight {
  text-align: right !important;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
	line-height: 1.8;
	font-size: 1.6rem;
	color: #333;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  line-height: 1.5;
}
p {
  line-height: 1.7;
}
ul li {
  line-height: 1.6;
	list-style-type: none;
}
ol li {
  line-height: 1.6;
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
sup {
	font-size: 70%;
	vertical-align: super;
}
sub {
	font-size: 70%;
	vertical-align: sub;
}
em {
	font-weight: 700;
}
address {
	font-style: normal;
}

/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: #000000;
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}
a > img {
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}
a:hover {
	color: #65858E;
}
a:hover > img {
	opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
/*-----------------------------------------------------
	general-purpose
------------------------------------------------------*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
	position: relative;
	z-index: 10;
}
header .headerInner {
	width: 1200px;
	margin: 0 auto;
}
header .headerLogo {
	width: 140px;
	padding-top: 20px;
}
header .headerLogo img {
	width: 140px;
}
header nav.headerMenu {
	margin-top: 40px;
	margin-bottom: 40px;
}
header nav.headerMenu ul.flex li a {
	display: inline-block;
	padding: 18px;
	font-size: 16px;
	font-weight: 700;
}
header nav.headerMenu ul.flex li a:hover {
	color: #65858E;
}
header nav.headerMenu ul.flex li.menuContact a {
	position: relative;
	margin-left: 15px;
	padding: 18px 35px 18px 62px;
	background: #041a26;
	border-radius: 7px;
	color: #fff;
	box-shadow: 2px 3px 16px -6px rgba(0,0,0,0.6);
}
header nav.headerMenu ul.flex li.menuContact a::before {
	position: absolute;
	top: 50%;
	left: 23px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	content: "";
	width: 24px;
	height: 18px;
	background: url("../images/common/contact_icon.svg") center center no-repeat;
	background-size: cover;
}
header nav.headerMenu ul.flex li.menuContact a:hover {
	background: #65858E;
	opacity: 1;
}
.fat-nav, .footerInner {
  display: none;
}
@media screen and (max-width: 1240px) {
  header .headerInner {
    width: 100%;
    padding: 0 20px;
  }
  header .headerLogo {
    width: 140px;
    padding-top: 20px;
  }
  header .headerLogo img {
    width: 140px;
  }
  header nav.headerMenu {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  header nav.headerMenu ul.flex li a {
    display: inline-block;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
  }
  header nav.headerMenu ul.flex li a:hover {
    color: #65858E;
  }
  header nav.headerMenu ul.flex li.menuContact a {
    position: relative;
    margin-left: 15px;
    padding: 18px 35px 18px 62px;
    background: #041a26;
    border-radius: 7px;
    color: #fff;
    box-shadow: 2px 3px 16px -6px rgba(0,0,0,0.6);
  }
  header nav.headerMenu ul.flex li.menuContact a::before {
    position: absolute;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    content: "";
    width: 24px;
    height: 18px;
    background: url("../images/common/contact_icon.svg") center center no-repeat;
    background-size: cover;
  }
  header nav.headerMenu ul.flex li.menuContact a:hover {
    background: #65858E;
    opacity: 1;
  }
}
@media screen and (max-width: 920px) {
	header nav.headerMenu {
		display: none;
	}
  header {
		position: sticky;
		top: 0;
		left: 0;
		height: 100px;
		background: rgba(255,255,255,.95);
		-webkit-box-pack: start;
		justify-content: flex-start;
	}
  header .headerLogo {
		width: 120px;
		padding-top: 15px;
		padding-right: 0;
		padding-left: 20px;
	}
	header .headerLogo img {
		width: 100%;
		height: auto;
	}

	/* SPメニュー */
  .hamburger {
    width: 45px ;
    height: 50px;
    display: block;
    position: fixed;
    top: 28px;
    right: 20px;
    z-index: 10000;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
	.hamburger::after {
    position: absolute;
		bottom: 0;
		right: 0;
		display: block;
		content: "MENU";
		font-size: 13px;
		font-weight: 300;
		color: #0E6EB8;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 35px;
    height: 1px;
		position: absolute;
		right: 0;
    display: block;
    background-color: #0E6EB8;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
  }
  .hamburger__icon::before {
		width: 45px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 25px;
    top: 10px;
  }
  .hamburger.active {
    right: 20px;
  }
	.hamburger.active::after {
		content: "CLOSE";
		right: -2px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 40px;
  }
  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  .fat-nav {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 9999;
    background: #0E6EB8;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .fat-nav__wrapper {
    width: 100%;
    height: 100%;
		position: relative;
		padding: 80px 40px 30px;
    display: table;
    table-layout: fixed;
		z-index: 1;
  }
	.fat-nav__wrapper {
		background: #0E6EB8;
	}
	.fat-nav__wrapper .footerInner {
    display: block;
		width: 100%;
	}
	.fat-nav__wrapper .footerInner address {
		font-size: 18px;
		color: #fff;
	}
	.fat-nav__wrapper .footerInner .footerTel a {
		font-size: 25px;
		font-weight: 700;
		color: #fff;
	}
	.fat-nav__wrapper .footerInner ul {
		margin-bottom: 20px;
	}
	.fat-nav__wrapper .footerInner ul li {
    width: 48%;
		margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #E1E6EA;
	}
	.fat-nav__wrapper .footerInner ul li a {
		font-size: 18px;
		font-weight: 700;
		color: #fff;
	}
}

/*-----------------------------------------------------
	sec#contactLink
------------------------------------------------------*/
#contactLink {
  position: relative;
	padding: 80px 0;
  background: url("../images/common/contact_bg.jpg")no-repeat center center;
  background-size: cover;
}
#contactLink::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
	width: 100%;
  height: 100%;
  background: rgba(4,26,38,.91);
}
body.page #contactLink {
  margin-top: 150px;
}
#contactLink .wrap {
  position: relative;
  z-index: +1;
	width: 532px;
	margin: 0 auto;
}
#contactLink .wrap h2 {
	margin-bottom: 10px;
  color: #fff;
}
#contactLink .wrap p {
  margin-bottom: 20px;
  font-family: 'Shippori Mincho', serif;
	font-size: 18px;
  font-weight: 600;
  color: #fff;
}
#contactLink .wrap .btn_01 {
  background: #fff;
  color: #041A26;
}
#contactLink .wrap .btn_01:hover {
  background: rgba(255,255,255,.8);
}
#contactLink .wrap .btn_01::before {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	content: "";
	width: 24px;
	height: 18px;
	background: url("../images/common/contact_icon_black.svg") center center no-repeat;
	background-size: cover;
}
#contactLink .wrap .btn_01::after {
  display: none;
}
@media screen and (max-width: 1080px) {
  #contactLink .wrap {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  #contactLink .wrap p {
    font-size: 16px;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding: 40px 0 0;
  text-align: center;
}
footer img {
  width: 190px;
  height: auto;
  margin-bottom: 10px;
}
footer address {
  margin-bottom: 30px;
}
footer ul.flex {
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}
footer ul li {
  margin-right: 30px;
  font-weight: 700;
}
footer ul li:last-child {
  margin-right: 0;
}
small.copyright {
  display: block;
  width: 100%;
  padding: 10px;
  background: #041A26;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 414px) {
  footer ul li {
    width: 32%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  small.copyright {
    font-size: 12px;
  }
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  width: 1000px;
  margin: 0 auto;
}
.wrap1200 {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
	.wrap {
		width: 100%;
		padding: 0 40px;
	}
}
@media screen and (max-width: 750px) {
	.wrap {
		padding: 0 20px;
	}
}

.col02 {
	width: 47%;
	margin-bottom: 50px;
}
.col02 img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
@media screen and (max-width: 414px) {
	.col02 {
		width: 100%;
	}
}

.col03 {
	width: 31%;
	margin-bottom: 50px;
}
.col03 img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
	.col03 {
		width: 48%;
	}
}
@media screen and (max-width: 414px) {
	.col03 {
		width: 100%;
	}
}
/*-----------------------------------------------------
	#pageMv
------------------------------------------------------*/
#pageMv {
	position: relative;
	width: 1200px;
	margin: 0 auto 80px;
}
#pageMv::before {
  display: block;
  content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  height: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 27%, rgba(255,255,255,0) 100%);
	z-index: 3;
}
#pageMv h1 {
	position: absolute;
	top: 50%;
	left: 100px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  z-index: 4;
}
#pageMv img {
	width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 7px;
}
@media screen and (max-width: 1240px) {
  #pageMv {
    width: 100%;
    text-align: left;
  }
  #pageMv h1 {
    left: 0;
    padding-left: 40px;
    text-align: left;
    text-shadow:
      3px 3px 3px #fff, -3px -3px 3px #fff,
     -3px 3px 3px #fff,  3px -3px 3px #fff,
      3px 0px 3px #fff, -3px -0px 3px #fff,
      0px 3px 3px #fff,  0px -3px 3px #fff;
  }
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  font-family: 'Shippori Mincho', serif;
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	line-height: 1.7;
  letter-spacing: 0.1em;
}
.midasi_01 span {
	color: #0E6EB8;
}
.midasi_01 span span {
	font-size: 48px;
}

.midasi_02 {
  padding: 10px 20px;
  border-top: 3px double #0E6EB8;
  border-bottom: 3px double #0E6EB8;
  font-family: 'Shippori Mincho', serif;
	font-size: 25px;
	font-weight: 800;
}
.midasi_03 {
  position: relative;
  padding: 1.5rem;
  font-family: 'Shippori Mincho', serif;
	font-size: 25px;
	font-weight: 800;
}
.midasi_03::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #0E6EB8;
}
@media screen and (max-width: 750px) {
	.midasi_01 {
    font-size: 28px;
		line-height: 1.5;
	}
  .midasi_02 {
    font-size: 21px;
  }
}

/*-----------------------------------------------------
	btn
------------------------------------------------------*/
.btn_01 {
  display: inline-block;
	position: relative;
	padding: 15px 80px;
	background: #041a26;
	border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
	color: #fff;
  text-align: center;
	box-shadow: 2px 3px 16px -6px rgba(0,0,0,0.6);
}
.btn_01::after {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	content: "";
	width: 5px;
	height: 8px;
	background: url("../images/common/arrow_right.svg") center center no-repeat;
	background-size: cover;
}
.btn_01:hover {
	background: #65858E;
	opacity: 1;
  color: #fff;
}
@media screen and (max-width: 414px) {
  .btn_01 {
    display: block;
  }
}
/*-----------------------------------------------------
	404
------------------------------------------------------*/
#notfound {
	padding: 80px 0;
}
#notfound p {
	margin-bottom: 80px;
	font-size: 18px;
	text-align: center;
}
@media screen and (max-width: 414px) {
	#notfound {
		min-height: auto;
	}
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	レスポンシブ
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sp {
	display: none;
}
.tb {
	display: none;
}
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
@media screen and (max-width: 960px) {
	.tb {
		display: block;
	}
}
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
      max-width: 100%;
      height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}

	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.sp {
		display: block !important;
	}
	.tb {
		display: none !important;
	}
	.pc {
		display: none !important;
	}
}


/* mfp */
ul#mfp_phase_stat {
	display: none !important;
}