@charset "UTF-8";

/* ===================================================================
　共通設定
==================================================================== */
.pc-none{ display: none; }
.sp-none{ display:block; }
.grecaptcha-badge { visibility: hidden; }

/* 読み込み時のフェードイン表示 */
html {
    animation: fadeIn 1s ease 0s 1 normal;
}

/* iOSでのデフォルトスタイルをリセット */
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;
}	
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}
input[type="radio"] { display: none; }
input[type="radio"]:checked + label { background: #ff0000; }
	
html { box-sizing: border-box; }
*,
*:before,
*:after { box-sizing: inherit; }

body, html {
	margin:0;
	padding:0; }

body{
	font-family: "europa","Koburina Gothic W3 JIS2004",sans-serif;
    color: #1f1f1f;
    font-size: 16px; 
 	line-height: 2;
	letter-spacing: 0.1em;
	-webkit-text-size-adjust: 100%;
	position:relative;
	word-break:break-all; }


body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li,
blockquote, pre, table, caption, th, td, address,
form, fieldset, legend, object {
  margin: 0;
  padding: 0; }

header, section, navi, footer { display: block; }

a, ins { text-decoration: none; }

address, em, cite, dfn, var { font-style: normal; }

input, textarea { font-weight: normal; }

button, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

button, input, select, textarea {
  font-family : inherit;
}

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

a { color: inherit; }

a img { border: none; }

a[href^="tel:"] {
  cursor: pointer;
  opacity: 1 !important;
}
	
a:link, a:visited, a:active { color:#3e3a39; }
	
a:hover {
	color: #3e3a39;
	text-decoration: none;}

li { list-style: none; }

hr{
	height: 1px;
	background: #3e3a39;
	border: none; }

strong { font-weight: 600; }

/* clearfix */
.cf:before,
.cf:after {
    content:""!important;
    display:table!important; } 
.cf:after { clear:both!important; }
/* For IE 6/7 (trigger hasLayout) */
.cf { zoom:1; }

table{
  border-collapse: collapse;
  border-spacing: 0;	
}


/* ===================================================================
　cssアニメーション
==================================================================== */
/* フェードイン-------------------------- */
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


/* フェードアウト-------------------------- */
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@-webkit-keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


/* フェードアップ（下からふわっと登場）-------------------------- */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeUpTrigger{/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
    opacity: 0;
}


/* フェード（左から右に）-------------------------- */
.fadeRight {
    animation-name: fadeRight;
    animation-duration: 1s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeRight {
from {
    opacity: 0;
    transform: translateX(0);
}
to {
    opacity: 1;
	transform: translateX(50px);
}
}



/* ===================================================================
　個別＋α　
==================================================================== */
/* 個別マージン */
.mt10{margin-top:10px!important;}
.mt20{margin-top:20px!important;}
.mt30{margin-top:30px!important;}
.mt40{margin-top:40px!important;}
.mt50{margin-top:50px!important;}
.mt60{margin-top:60px!important;}
.mt70{margin-top:70px!important;}
.mt80{margin-top:80px!important;}
.mt90{margin-top:90px!important;}
.mt100{margin-top:100px!important;}

.mb10{margin-bottom:10px!important;}
.mb20{margin-bottom:20px!important;}
.mb25{margin-bottom:25px!important;}
.mb30{margin-bottom:30px!important;}
.mb40{margin-bottom:40px!important;}
.mb50{margin-bottom:50px!important;}
.mb60{margin-bottom:60px!important;}
.mb70{margin-bottom:70px!important;}
.mb80{margin-bottom:80px!important;}
.mb90{margin-bottom:90px!important;}
.mb100{margin-bottom:100px!important;}

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

/* 個別幅 */
.width100{width:800px;margin:0 auto;}
.width200{width:800px;margin:0 auto;}
.width300{width:800px;margin:0 auto;}
.width400{width:800px;margin:0 auto;}
.width500{width:800px;margin:0 auto;}
.width600{width:800px;margin:0 auto;}
.width700{width:800px;margin:0 auto;}
.width800{width:800px;margin:0 auto;}
.width900{width:800px;margin:0 auto;}
.width1000{width:800px;margin:0 auto;}

.m-width800{max-width:800px;margin:0 auto;}

.mx900{max-width:900px;margin:0 auto 1em;}

.ls-chosei{letter-spacing: 0.04em!important;}

.green{color:#145359;}

p.strong-p{
	font-weight: bold;
	font-size: 17px;
	line-height: 165%;
	padding: 20px 0 0;
	margin: 0 0 20px!important;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}

/* ===================================================================
　btn
==================================================================== */
.btn a span{
	font-size: 17px;
}
.btn a{
	max-width: 400px;
	position: relative;
	display: block;
	padding: 0.8em 2em;	
	background-color: #274c8f;
	color: #fff;
	border-radius: 10px;
}

/* btn02 */
.btn02 a{
	max-width: 300px;
	display: block;
	background: #fff;
	overflow: hidden;
	font-size: 16px;
	letter-spacing: 0.07em;
	line-height: 1;	
	color: #000!important;
	padding: 1.2em 1em;
	width: 100%;
	text-align: center;
	margin: 5px 0;
	border-radius: 30px;
}
.btn02 a:hover{
	text-decoration: none;
	opacity: 0.8;
	transition:all 0.5s;
}

/* btn03 */
.btn03 a{
	display: block;
	background: #145358;
	overflow: hidden;
	font-size: 16px;
	letter-spacing: 0.07em;
	line-height: 1;	
	color: #fff!important;
	padding: 1.2em 1em;
	width: 100%;
	text-align: center;
	margin: 5px 0;
}
.btn03 a:hover{
	text-decoration: none;
	opacity: 0.8;
	transition:all 0.5s;
}


/* btn-green-mini */
.btn-green-mini{
  display: inline-block;
   margin: 0 0 0 1em; 
}
.btn-green-mini a{
	display: inline-block;
  vertical-align: bottom;
	background: #274c8f;
	overflow: hidden;
	font-size: 16px;
	letter-spacing: 0.07em;
	line-height: 1;	
	color: #fff!important;
	padding: 0.4em 1em;
  min-width: 100px;
	text-align: center;
	margin: 5px 0 0;
}
.btn-green-mini a:hover{
	text-decoration: none;
	opacity: 0.8;
	transition:all 0.5s;
}


/* btn04 */
.btn04 a {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	color: #274c8f;
	font-size: 16px;
	border-radius: 30px;
	text-align: center;
	margin: 5px auto!important;
	width: 100%;
	max-width: 300px;
	padding: 1.2em 1em;
	position: relative;
	transition: 0.3s;
	background-color: #fff;
}

.btn04 a::before, .btn04 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 13px;
  background-color: #274c8f;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}

.btn04 a:hover{
	text-decoration: none;
	opacity: 0.8;
	transition:all 0.5s;
}
.btn04 a::before {
  transform: translateY(-50%) rotate(30deg);
}
.btn04 a::after {
  transform: translateY(-50%) rotate(-30deg);
}
.btn04 a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}
.btn04 a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}





/* btn05 */
.btn05 a {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	color: #274c8f;
	font-size: 16px;
	border-radius: 30px;
	text-align: center;
	margin: 5px auto;
	width: 100%;
	max-width: 300px;
	padding: 1.2em 1em;
	position: relative;
	transition: 0.3s;
	background-color: #fff;
  border: 1px solid #274c8f;
}

.btn05 a::before, .btn05 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 13px;
  background-color: #274c8f;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}
.btn05 a:hover{
	text-decoration: none;
	background: #274c8f;
  color: #fff;
	transition:all 0.5s;
}
.btn05 a::before {
  transform: translateY(-50%) rotate(30deg);
}
.btn05 a::after {
  transform: translateY(-50%) rotate(-30deg);
}
.btn05 a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
  background-color: #fff;
}
.btn05 a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
  background-color: #fff;
}






/* obi-btn */
.obi-btn{
	position: absolute;
	top: 15px;
	right: 0;
  font-family: Georgia, Times New Roman, serif;
}
.obi-btn a {
  display: block;
	line-height: 1;
	color: #274c8f;
	font-size: 14px;
	border-radius: 30px;
	text-align: center;
	margin: 5px auto;
	width: 100%;
	max-width: 300px;
	padding: 10px 50px 10px;
	position: relative;
	transition: 0.3s;
	background-color: #fff;
  border: 1px solid #274c8f;
}
.obi-btn a::before,
.obi-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 11px;
  background-color: #274c8f;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}
.obi-btn a:hover{
	text-decoration: none;
	background: #274c8f;
  color: #fff;
	transition:all 0.5s;
}
.obi-btn a::before {
  transform: translateY(-50%) rotate(30deg);
}
.obi-btn a::after {
  transform: translateY(-50%) rotate(-30deg);
}
.obi-btn a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
  background-color: #fff;
}
.obi-btn a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
  background-color: #fff;
}


/*2カラム*/
div.col2 li:nth-child(2n){
	margin-right: 0px;
}
div.col2 li{
	width: 45%;
	margin-right: 4%;
	margin-bottom: 30px;
	display: inline-block;
	vertical-align: top;
}

div.col2 ul{
	margin-bottom: 40px;
}


/* ===================================================================
　ハンバーガーメニュー
==================================================================== */
.hamburger-wrap{
    position: relative;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 9995;
}
.hamburger {
    display: block;
    width:30px;
    height: 22px;
    position: fixed;
    top: 38px;
    right: 2.6%;
	cursor: pointer;
    z-index: 9996;
}
.hamburger:before{
  content: '';
  position: absolute;
  top: -23px;
  right: -19.5px;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff; 
}
.hamburger,
.hamburger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #274c8f;
  border-radius: 4px;
}	
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 10px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}


.kaso-hamburger-wrap .hamburger:before,
.is-fixed-02:before{
  content: '';
  position: absolute;
  top: -23px;
  right: -19.5px;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #274c8f; 
}
.kaso-hamburger-wrap .hamburger span,
.kaso-hamburger-wrap .hamburger span:nth-of-type(2)::after,
.is-fixed-02 span,
.is-fixed-02 span:nth-of-type(2)::after{
  background-color: #fff;
}




.peke{
  /*top: 5%;
	right: 2.6%;*/
  z-index: 9999;  
}
.peke:before{
  content: '';
  position: absolute;
  top: -23px;
  right: -19.5px;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: #fff;
}
.peke::after {
  content: '';
  transition: all .4s;
}

#hamburger-menu.peke span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #274c8e!important;		  
  top: 10px;
}
#hamburger-menu.peke span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-btn17-bar02 .8s forwards;
  background-color: #274c8e!important;		  
}
@-webkit-keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
#hamburger-menu.peke span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #274c8e!important;		  
  bottom: 10px;
}




.drawr {
	display: none;
	background-color:#274c8f;
	position: fixed;
	top:0;
	right:0;
	width:100%;
	padding:35px 20px 0;
	z-index: 999;
	overflow-y: scroll;
}


#drawrmenu li{
	position: relative;
 	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	font-weight: normal;
	padding-left: 30px;
}
#drawrmenu li a {
	color:#fff;
	width: 100%;
	display: inline-block;
	line-height: 140%;
	padding:0 1em 0 1.1em;
	letter-spacing: 3px;
    font-size: 19px;
	transition:all 0.3s;  
}
#drawrmenu li a:hover{
	opacity: 0.7;
}
#drawrmenu li a span{
font-family: "europa","Koburina Gothic W3 JIS2004",sans-serif;
font-size: 11px;
letter-spacing: 0.1em;
line-height: 1;
margin: 0 0 0 10px;
display: inline-block;
}
#drawrmenu li:last-of-type{
  margin-bottom: 27px;
}

.drawer .menu-inner {
 display:flex;
 flex-wrap:nowrap;
 justify-content:space-between;
 align-content:flex-start;
 position:relative;
width: 100%;
padding: 15vh 5vw;
 align-items:flex-start;
}
.drawer .logo-ham {
	width: 50%;
    padding-left: 8vw;
}
.menu-inner-right{
	width: 60%;	
  padding-left: 3vw;	
  font-size: 27px;
   border-left: 2px solid #fff;  
}



.drawer-info-btn-wrap{
  margin: 0 0 0 0.25em;
}
.drawer-info-btn{
	  display: inline-block;
	  font-family: Georgia, Times New Roman, "Koburina Gothic W3 JIS2004", sans-serif;
	  font-weight: normal;
}
.drawer-info-btn a {
  display: block;
	line-height: 1;
	color: #274c8f;
	font-size: 16px;
	border-radius: 30px;
	text-align: center;
	margin: 5px auto;
	width: 100%;
	max-width: 300px;
	padding: 1em 50px 1em;
	position: relative;
	transition: 0.3s;
	background-color: #fff;
  border: 1px solid #274c8f;
}
.drawer-info-btn a::before,
.drawer-info-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 6px;
  background-color: #274c8f;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}
.drawer-info-btn a:hover{
	text-decoration: none;
	background: #fff;
  color: #fff;
	transition:all 0.5s;
}
.drawer-info-btn a::before {
  transform: translateY(-50%) rotate(30deg);
}
.drawer-info-btn a::after {
  transform: translateY(-50%) rotate(-30deg);
}
.drawer-info-btn a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
  background-color: #fff;
}
.drawer-info-btn a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
  background-color: #fff;
}




.drawer .logo-ham img{
	width: 26vw;
  max-width: 300px;
}
.drawr-about{
	margin: 45px auto 15px;
	color:#fff!important;
}
.drawr-about p{
	font-size: 14px;
	line-height: 20px;
}
.drawr-about p span{
	display: inline-block;
  margin: 0 24px 0 0;
  font-family: Georgia, Times New Roman, "Koburina Gothic W3 JIS2004", sans-serif;
  font-weight: normal;   
}
.drawr-about p span:nth-of-type(3){
  margin: 0 14px 0 0;  
}



/* ===================================================================
　フロントのローディングアニメーション
==================================================================== */
/*グリーンバック fixedで全面に固定*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background:#274c8f;
}

/*ローディング中スクロール禁止  */
body.overflowhidden{
	overflow: hidden;
}


/* ===================================================================
　container
==================================================================== */
#container{
	position: relative;
	overflow: hidden;
}

/* ===================================================================
　ヘッダー（追従グローバルナビ）
==================================================================== */
header{
  position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 90px;
}
header h1{
	display: inline;
  font-size: 0;
  line-height: 0;
}
header .logo img{
	width: auto;
	height: 43px;
}

header.header-front{
	position: fixed;
}
header.header-kaso .logo{
	background-color: #fff;
}
header.header-kaso .logo .menu a{
	color: #274c8e;
	font-size: 17px;
}
header.header-kaso .logo .menu{
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	margin-left: 30px;
    width: 12vw;
	line-height: 43px;
    text-align: center;
}
header.header-kaso img{
	margin-right: 2vw;
}
header.header-kaso .logo{
	display: flex!important;
	margin:0;
	padding:23px 30px 30px 30px;
	
}
header .logo{
  display: block!important;
	margin:0;
	padding:23px 30px 30px 30px;
}

#slide::before{
	content: "";
	border-top: 11vw solid #fff;
	border-left: 11vw solid #fff;
	border-right: 11vw solid transparent;
	border-bottom: 11vw solid transparent;
	position: absolute;
	top: -2vw;
	left: -1.5vw;
    transform: rotate(12deg);
}
.is-fixed {
/*  background: rgb(255,255,255,0.7);*/
}



/* ===================================================================
　スライド
==================================================================== */
#slide{
	position: relative;
	overflow: hidden;
	background-image: url('http://juku0212.xsrv.jp/wp/wp-content/uploads/2021/11/pixta_75276808_XL-scaled.jpg');
	height: 90vh;
	background-size:cover;
	background-position: center;
	padding: 0 0 40px 0;
}
.metaslider .slides img {
    height: 80vh!important;
    object-fit: cover;
}
.metaslider .flexslider {
    height: 80vh;
    margin: 0 0 0!important;
}
#slide .metaslider .flex-control-nav{

}
.flex-control-paging li a {
    width: 8px!important;
    height: 8px!important;
}
.catch{
	position: absolute;
	width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
}
.on_slide_txt_wrap div.btn{
	display: inline-block!important;
	margin: 20px 20px 0 0;
}
.on_slide_txt_wrap{
	position: absolute;
    top: 20vh;
    text-align: left;
	width: 100%;
}
.catch-txt {
	padding: 0 12%;
}


.catch-txt-accent{
	padding: 0.3em 1.2em;
	max-width: 400px;
	position: relative;
	display: inline-block;
	background-color: #274c8f;
	color: #fff;
	border-radius: 10px;
}
.catch-txt-accent span{
	font-size: 20px;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}





.catch-txt h2{
	font-size:33px;
	line-height: 1.6;
	margin: 0 0 10px;
	text-align: left;
	letter-spacing: 2px;
 	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	font-weight: normal;
	color: #274c8f;
}

/* ===================================================================
　index
==================================================================== */
#index {
	width: 100%;
	margin: auto;
	padding: 0;

}

#index h2{
	font-size:30px;
	color: #274c8f;
	text-align: center;
	letter-spacing: 3px;
	line-height: 1.9!important;
	margin-bottom:50px;margin-top: 30px;
 	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	font-weight: normal;
}
#index h2 span{ 
  font-family: "europa","Koburina Gothic W3 JIS2004",sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
	margin: 10px 0 0 2px;
	display: block;
}
.works-archive{
	margin: 30px auto;
}

#index img.wide{
	min-width: 100vw;
	width: 100vw;
	height: auto;
}

/* ===================================================================
　inner
==================================================================== */
.inner{
	width:1366px;
	margin:0 auto;
}
.inner1000{
	width: 100%;
  	max-width: 1000px;	
	margin: 0 auto 0;	
}
.inner900{
	width: 100%;
  	max-width: 900px;	
	margin: 0 auto 0;	
}
.inner800{
	width: 100%;
  	max-width: 800px;	
	margin: 0 auto 0;	
}
.inner300{
	width: 100%;
  	max-width: 300px;	
	margin: 0 auto 0;	
}

.inner-80p{
	width: 80%;
	max-width: 1366px;
  margin: 0 auto;
}
.inner1080{
	width: 100%;
  	max-width: 1080px;	
	margin: 0 auto 0;	
}

.txtC{
	text-align: center;
}
.txtL{
	text-align: left;
}
/* ===================================================================
　#top-menu
==================================================================== */
section#top-menu div.i-s-00-inner{
	padding-bottom: 0;
}
section#top-menu ul{
	display: flex;
}

section#top-menu ul li:nth-child(5){
	margin-right: 0;
}
section#top-menu ul li a{
	color: #274c8f;
}
	
section#top-menu ul li:nth-child(3){
	margin-left: -5px;
}section#top-menu ul li:nth-child(1){
	margin-left: 30px;
}
section#top-menu ul li{
	font-size: 1.4vw;
    margin-right: 5.3vw;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	color: #274c8f;
}




/* ===================================================================
　#index-sec-00
==================================================================== */
section#index-sec-00{
    border-bottom: 1px solid #f3f3f3;
}
.i-s-00-inner{
    position: relative;
    width: 100%;
    padding: 90px 12.5vw 75px;
}
.i-s-00-inner p{
  text-align: center;
  margin-bottom: 44px;
}


/* ===================================================================
　#index-sec-01 (property)
==================================================================== */
section#index-sec-01 {
  padding: 50px 0 50px 0;
}


.obi{
	position: relative;
}


#index-sec-01 ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#index-sec-01 ul:after,
#index-sec-01 ul:before{
	content:"";
	display:block;
	width: 33.333%;
	height:0;
}
#index-sec-01 ul:before{
	order:1;
}
#index-sec-01 ul li{
	width: calc(33.333% - 20px);
	margin: 0 0 30px 0;	
	position: relative;
	overflow: hidden;
	height: auto!important;
}


#index-sec-01 .thumb{
	position: relative;
  overflow: hidden;
  margin: 0 0 30px 0;
	padding-top: 65%;	/* 比率 */
	border-radius: 5px; 
}
#index-sec-01 .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: 0.5s;/*マウスホバーで画像拡大ふわり*/
}
#index-sec-01 .thumb img:hover {/*マウスホバーで画像拡大*/
	transform: translate(-50%,-50%) scale(1.1, 1.1);
}






.price-box {
    display: inline-block;
  vertical-align: top;
    border: 1px solid #999;
  color: #999;
    padding: 2px 7px;
    text-align: center;
    margin-right: 10px;
    font-size: 10px;
  letter-spacing: 0.1em;
	border-radius: 2px; 
  transition: 0.3s;
}
.price-box:hover{
    border: 1px solid #999;
  color: #fff;
  background: #999;
}
.price-txt {
    display: inline-block;
  vertical-align: middle;
}
p.price {
    line-height: 22px;
    margin-top: 15px;
    font-size: 22px;
}

#index-sec-01 .cat {
	position: absolute;
    top: 7px;
    left: 7px;
}
#index-sec-01 .thumb .ico-new{
	display: inline-block;
    position: absolute;
    top: -9px;
    right: -73px;
    width: 130px;
    height: auto;
    padding: 40px 0 10px;
    line-height: 1;
    color: #fff;
    font-size: 16px;
    background: #274c8f;
    transform: rotate(45deg);
    transform-origin: top center;
    box-sizing: border-box;
    text-align: center;
  z-index: 99;
  font-family: Georgia, Times New Roman, serif;
font-weight: normal;
}
	

#index-sec-01 h3,
#page #index-sec-01 h3 {
	font-size: 17px;
  line-height: 165%;
	padding: 0;
	margin: 0 0 10px 0;
}
#index-sec-01 ul li a{
	color: #000;
  text-decoration: none;
}
#index-sec-01 ul li .cat a{
   background-color: #fff;
}
#index-sec-01 h2{
    text-align: left;
}
#index-sec-01 p{
	margin-top:0;
}

/* ===================================================================
　section#index-sec-02 (news)
==================================================================== */
section#index-sec-02 {
  padding: 60px 0 60px 0;
  clear: both;
}
.obi{
	position: relative;
}


#index-sec-01 .cat-title-wrap::before {
	content: "";
	width: 20px;
	height: 20px;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	background-color: #fff;
	left: 50%;
	top: -10px;
}
#index-sec-01 .cat-title-wrap {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 20px;
	padding-top: 30px;
	position: relative;
}
#index-sec-01 .title {
	position: relative;
}
#index-sec-01 .works-title::after {
    bottom: 95%!important; 
}

#index section#index-sec-02 h2{
    text-align: left;
}
section#index-sec-02 .inner-80p{
	width: 60%!important;
}
section#index-sec-02 ul{
	margin: 15px auto 20px;
	border-top:1px solid #3e3a39;
	font-size: 15px;
  letter-spacing: 0.09em;	
}
section#index-sec-02 ul li{
	position: relative;
	border-bottom:1px solid #4d4d4d;
	padding: 1.5em 2em;
	line-height: 140%;
}
section#index-sec-02 ul li .date,
section#index-sec-02 ul li .cat,
section#index-sec-02 ul li .title{
	display: inline-block;
  vertical-align: top;
}
section#index-sec-02 ul li .date{
	width: 30%;
 	padding-right: 1em;
}
section#index-sec-02 ul li .cat{
	width: 25%;
  padding-right: 1em; 
}
section#index-sec-02 ul li .cat a{
    display: inline-block;
	vertical-align: top;
    border: 1px solid #999;
	color: #999;
    padding: 2px 7px;
    text-align: center;
    margin-right: 10px;
    font-size: 10px;
	letter-spacing: 0.1em;
	border-radius: 2px; 
	transition: 0.3s;
}
section#index-sec-02 ul li .cat a:hover{
    border: 1px solid #999;
  color: #fff;
  background: #999;
}
section#index-sec-02 ul li .title{
	width: 59%;
}
section#index-sec-02 ul li a{
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
section#index-sec-02 ul li .title a:after{
   content: "";
   position: absolute;
   border-right: 1px solid #999;
   border-top: 1px solid #999;
   width: 8px;
   top:40%;
   right: 2%;
   height: 8px;
   transform: rotate(45deg);
	cursor: pointer;
}	



/* posts-list */
section#index-sec-02 .posts-list ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top:none;
}
section#index-sec-02 .posts-list ul:after,
section#index-sec-02 .posts-list ul:before{
	content:"";
	display:block;
	width: 33.333%;
	height:0;
}
section#index-sec-02 .posts-list ul:before{
	order:1;
}
section#index-sec-02 .posts-list ul li{
	width: calc(33.333% - 20px);
	margin: 0 20px 0 0;
	position: static;
	border-bottom:none;
	padding: 0;
}
section#index-sec-02 .posts-list ul li:nth-of-type(3n){
	margin: 0 0 0 0;	
}
section#index-sec-02 .posts-list ul li .thumb{
	position: relative;
  overflow: hidden;
  margin: 0 0 10px 0;
	padding-top: 60%;	/* 比率 */
}
section#index-sec-02 .posts-list ul li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#index-sec-02 .posts-list ul li .date{
  font-size: 13px;
}
section#index-sec-02 .posts-list ul li .date,
section#index-sec-02 .posts-list ul li .title{
  display: block;
  padding-right: 0;
  line-height: 165%;
}
section#index-sec-02 .posts-list ul li .title{
  margin: 10px 0;
}
section#index-sec-02 .posts-list ul li .cat{
	display: inline-block;
	padding-right: 0;
}
section#index-sec-02 .posts-list ul li .cat a{
  display: inline-block;
  border: 1px solid #3e3a39;
  padding: 3px 10px;
  text-align: center;
  line-height: 140%;
  margin-right: 10px;
  font-size: 13px;
}
section#index-sec-02 .posts-list ul li .cat a:hover{
  background: #000;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: all .3s;
}
section#index-sec-02 .posts-list ul li .title a:after{
   display: none;
}	

.cat a{
	border-radius: 5px;
	border: 1px solid;
	width: auto;
    padding: 1px 5px;
    text-align: center;
}

/* ===================================================================
　section#index-sec-03
==================================================================== */
section#index-sec-03 h2{
	text-align: left;
}
section#index-sec-03 {
	overflow: auto;
	position: relative;
	border-bottom: 1px solid #274c8f;
	padding-top: 50px;
}
section#index-sec-03 div.txt-wrap{
    width: 50%;
    height: auto;
	float: left;
    text-align: left;
    z-index: 1;
}
section#index-sec-03  div.txt-wrap h2{
	text-align: left;
}
section#index-sec-03 div.txt-wrap p{
    margin-bottom: 49px;
	font-size: 15px;
	line-height: 2.5;
}
section#index-sec-03 .btn04 a {
    margin: 0;
}
section#index-sec-03 div.img-container{
	width: 50%;
  min-height: 500px;
	margin: 0 0 0 auto;
}
section#index-sec-03 div.img-container img{
  height: 100%;
  object-fit: cover;
}
section#index-sec-03 div.txt-wrap-right .price span{
	font-size: 16px;
}
section#index-sec-03 div.txt-wrap-right span.circle{
	color: #274c8e;
}
section#index-sec-03 div.txt-wrap-right .price-wrap{
	width: 43%;
	display: inline-block;
}
section#index-sec-03 div.txt-wrap-right .price{
	font-size: 28px;
}
section#index-sec-03 div.txt-wrap-right{
	width: 45%;
  min-height: 500px;
	margin: 0 0 0 auto;
}
section#index-sec-03 div.txt-wrap-right img{
  height: 100%;
  object-fit: cover;
}
section#index-sec-03 .btn05 a {
	margin: 5px 0!important;
}


/* ===================================================================
　#index-sec-04
==================================================================== */
section#index-sec-04{
	background-color: #274c8f;
  color: #fff;
}
.i-s-04-inner{
    position: relative;
    width: 100%;
    padding: 70px 12.5vw;
}
.i-s-04-wrap{
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    margin: 0 auto;
    padding: 0 .625vw;
}
.i-s-04-left{
	width: 40%;
    padding-right: .625vw;
}
#index .i-s-04-left h2{
  font-size: 48px; 
}
.i-s-04-right{
	width: 60%;
    padding-right: .625vw;	
}
.i-s-04-right .btn04 a{
  margin: 0;
}
section#index-sec-04 .i-s-04-right p{
    margin-bottom: 49px;
}




/* ===================================================================
　section#index-sec-05
==================================================================== */
section#index-sec-05 {
	background-color: #274c8f;
	overflow: auto;
	position: relative;
	display: flex;
   color: #fff;
}
section#index-sec-05 div.txt-wrap{
	background-color: #274c8f;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 55%;
	transform: translate(0%,-50%);
    text-align: left;
    z-index: 1;
}
section#index-sec-05  div.txt-wrap h2{
  font-size: 48px;
	text-align: left;
}
section#index-sec-05 div.txt-wrap p{
    margin-bottom: 49px;
}
section#index-sec-05 .btn04 a {
    margin: 0;
}
section#index-sec-05 div.img-container{
	width: 50%;
  min-height: 500px;
	margin: 0 auto 0 0;
}
section#index-sec-05 div.img-container img{
  height: 100%;
  object-fit: cover;
}




/* ===================================================================
　section#index-sec-06
==================================================================== */
section#index-sec-06 {
	background-color: #2b2b2b;
	overflow: auto;
	position: relative;
	display: flex;
   color: #fff;
}
section#index-sec-06 div.txt-wrap{
	background-color: #2b2b2b;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 25%;
	  transform: translate(-50%,-50%);
    text-align: left;
    z-index: 1;
}
section#index-sec-06  div.txt-wrap h2{
  font-size: 48px;
	text-align: left;
}
section#index-sec-06 div.txt-wrap p{
    margin-bottom: 49px;
}
section#index-sec-06 .btn04 a {
    margin: 0;
}
section#index-sec-06 div.img-container{
	width: 50%;
  min-height: 500px;
	margin: 0 0 0 auto;
}
section#index-sec-06 div.img-container img{
  height: 100%;
  object-fit: cover;
}
section#index-sec-06 .btn04 a {
	color: #2b2b2b;
}
section#index-sec-06 .btn04 a::before,
section#index-sec-06 .btn04 a::after {
  background-color: #2b2b2b;
}




/* ===================================================================
　#index-sec-07 (column)
==================================================================== */
section#index-sec-07 h3,
section#index-sec-07 h2{
	color: #fff!important;
}
section#index-sec-07 {
	background-color: #274c8f;
  padding: 50px 0;
	color: #fff;
}
section#index-sec-07 .obi-btn a {
	color: #fff;
	background-color: #274c8f;
  border: 1px solid #fff;
}
section#index-sec-07 .obi-btn a::before,
section#index-sec-07 .obi-btn a::after {
  background-color: #fff;
}
section#index-sec-07 .obi-btn a:hover{
	background: #fff;
  	color: #274c8f;
}
section#index-sec-07 .obi-btn a:hover::before {
  	background-color: #274c8f;
	opacity: 0.7;
}
section#index-sec-07 .obi-btn a:hover::after {
  	background-color: #274c8f;
	opacity: 0.7;
}


#index-sec-07 ul{
}
#index-sec-07 ul:after,
#index-sec-07 ul:before{
	content:"";
	display:block;
	width: 25%;
	height:0;
}
#index-sec-07 ul:before{
	order:1;
}

#index-sec-07 ul li:nth-child(1){
	border-top: 1px #fff solid;
}
#index-sec-07 ul li::after{
	content: "";
   position: absolute;
   border-right: 1px solid #fff;
   border-top: 1px solid #fff;
   width: 16px;
   top:40%;
   right: 2%;
   height: 16px;
   transform: rotate(45deg);
	cursor: pointer;
}
#index-sec-07 ul li{
	width: 60%;
	margin: 10px auto;
	border-bottom: 1px #fff solid;
	position: relative;
	overflow: hidden;
	height: auto;
	padding: 20px 0;
}

#index-sec-07 .txt .cat{
    width: fit-content;
	width: -moz-fit-content;
    color: #fff;
	border-radius: 0;
    border-color: #fff;
    height: 2em;
	padding: 0 10px 0 0;
	font-size: 15px;
    margin-bottom: 10px;
}
#index-sec-07 .txt{
	margin-left: 20px;
	float: right;
	width: 65%;
	color: #fff;
	position: relative;
	padding-top: 10px;
}
#index-sec-07 .thumb{
    position: relative;
    margin: 0;
    padding-top: 18%;
    border-radius: 5px;
    overflow: hidden;
    width: 30%;
    display: inline-block;
}
#index-sec-07 .thumb img {
	position: absolute;
    object-fit: cover;
    width: 90%;
	border-radius: 5px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#index-sec-01 h3,
#index-sec-07 h3,
#page #index-sec-07 h3 {
	font-size: 17px;
  line-height: 165%;
	padding: 0;
	margin: 0 0 10px 0;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
#index-sec-07 ul li a{
	color: #fff;
	height: 150px;
  text-decoration: none;
}
#index-sec-07 h2{
    text-align: left;
}
#index-sec-07 p{
	margin: 0 50px 0 0;
}
section#index-sec-07 .inner-80p{
	width: 60%!important;
}


/* ===================================================================
　section#index-sec-08
==================================================================== */
section#index-sec-08 {
	background-color: #274c8f;
	overflow: auto;
	position: relative;
	display: flex;
   	color: #fff;
	padding: 30px 0;
}
section#index-sec-08 div.txt-wrap{
	background-color: #274c8f;
    width: 100%;
	padding: 75px 0;
	margin: 0 auto;
    height: auto;
    text-align: center;
    z-index: 1;
}
section#index-sec-08  div.txt-wrap h2{
  font-size: 28px;
	text-align: center;
	color: #fff;
}
section#index-sec-08 div.txt-wrap p{
    margin-bottom: 49px;
}
section#index-sec-08 .btn04 a {
    margin: 0;
}
section#index-sec-08 div.img-container{
	width: 50%;
  min-height: 500px;
	margin: 0 0 0 auto;
}
section#index-sec-08 div.img-container img{
  height: 100%;
  object-fit: cover;
}

section#index-sec-08 div.fukidasi-container{
	display: flex;
	justify-content: space-around;
	margin: 10px auto 60px auto;
	
}
section#index-sec-08 div.fukidasi .txt{
	font-size: 17px;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
	
section#index-sec-08 div.fukidasi img{
	height: 157px;
	margin-left: 40%;
}
section#index-sec-08 div.fukidasi{
	background-image: url(http://juku0212.xsrv.jp/wp/wp-content/uploads/2021/11/fukidasi.png);
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 1.6%;
	color: #274C8E;
	width: 30%;
	height: auto;
}
section#index-sec-08 .btn04 a::after,
section#index-sec-08 .btn04 a::before{
	background-color: #fff;
}
section#index-sec-08 .btn04 a{
	background-color: #274c8f;
	color: #fff;
	border: 1px solid #fff;
}
section#index-sec-08 div.col2 li:nth-child(2n){
	padding-left: 0;
	padding-right: 13%;
}
section#index-sec-08 div.col2 li{
	vertical-align: top;
	padding-left: 13%;
	padding-right: 0;
}
section#index-sec-08 div.col2 .text{
	font-size: 19px;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
section#index-sec-08 div.col2 .number{
	font-size: 60px;
	line-height: 1.2;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
section#index-sec-08 div.col2 img{
	width: 70%;
	margin-bottom: 23px;
}



/* ===================================================================
contact
==================================================================== */
section#contact div.contact-container::before{
	content:url(http://juku0212.xsrv.jp/wp/wp-content/uploads/2021/11/contact_icon.png);
	width:50px;
	position: absolute;
	transform: scale(0.15);
	left: 39%;
	top: -75px;
}
	
	
section#contact div.contact-container div.message{
	margin-top: 20px;
	font-size: 1.3rem;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
section#contact div.contact-container h2{
	margin-top: 50px;
	margin-bottom: 10px;
}

	
section#contact div.contact-container:hover{
    box-shadow:
      -1px -1px 6px transparent,
      1px 1px 6px transparent,
      inset 1px 1px 6px rgba(17, 17, 17, 0.3),
      inset -1px -1px 6px rgba(255, 255, 255, 0.5)
    ;
}
section#contact div.contact-container p{
	text-decoration: underline;
}
section#contact div.contact-container{
	width: fit-content;
	width: -moz-fit-content;
	text-align: center;
	height: auto;
/*	box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;*/
  box-shadow:
    -1px -1px 6px rgba(255, 255, 255, 0.5),
    1px 1px 7px rgba(17, 17, 17, 0.3),
    inset 1px 1px 1px transparent,
    inset -1px -1px 1px transparent
  ;
  transition: box-shadow ease-in-out 0.3s;
	padding: 40px;
	color: #274C8E;
	margin: 50px auto;
	position: relative;
}





/* ===================================================================
　フッター
==================================================================== */
#footer{
	padding:60px 0 0 0; 
	overflow: hidden;
	display: block;
	border-top: 1px solid #000;
  line-height: 165%;
}

#footer-in {
	position: relative;
	width: 100%;
	padding: 0 10%;
}

#footer-in h3{
	font-size: 18px;
	padding: 0;
	margin: 0 0 17px;
 font-family: Georgia, Times New Roman, serif;
  font-weight: normal;
}

#footer-wrap-01{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
	padding-bottom: 40px;
	border-bottom: 1px solid #000;
}

.footer-left{
	display: block;
    flex-wrap: nowrap;
}
.footer-left .logo{
    position: relative;
    width: 15vw;
    margin-right: 3.5vw;
	margin-bottom: 40px;
}
.footer-left .txt{
    position: relative;
    width: 25vw;
}
.footer-left p{
	line-height: 165%;
}
.footer-left p span{
	display: inline-block;
  margin: 0 24px 0 0;
  font-weight: normal;   
}
.footer-left p span:nth-of-type(3){
  margin: 0 14px 0 0;  
}


.footer-right{
	display: flex;
  flex-wrap: nowrap;	
 	font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: normal; 
	font-size: 16px;
}
.footer-right .sitemap{
    width: auto;	
	max-width: 350px;
}
.footer-right .sitemap-banner{
	adding: 30px 0 10px;
	display: block;
}

.footer-right .sitemap{
	margin-left: 3.5vw;
	color: #274c8e;
} 
.footer-right  ul{
	margin: 0 0;
	color: #274c8e;
}
.footer-right ul li a{
	width: 100%;
	display: inline-block;
	padding:0 0 5px 0;
	line-height: 140%;
	color: #274c8e;
}


#footer-wrap-02{
	border-top:  1px solid #f3f3f3;
  padding-top: 25px;
  margin: 0 0 40px;  
}
.copy{
  font-size: 0.85em;
	position: relative;
	width: 100%;
	padding: 0 8.95833vw;
}
.copy-left{
	position: absolute;
	top: 0;
	left: 0;
}
.copy-right{
	position: absolute;
	top: 0;
	right: 0;
}
.copy-left,
.copy-right{
  font-weight: normal;  
}
.copy-bottom{
  font-size: 0.9em;  
  text-align: center;
  padding: 80px 0 0;
}


	