@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/
* {
  box-sizing: border-box;
  /*word-break: break-all;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 10px;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    /*color: #4d4d4d;*/
    line-height: 1.7;
    /*text-align: justify;*/
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    letter-spacing: 0.05em;
    background-color: #FFFFFF;
}
/* header
------------------------------------------------------------*/
header {
  display: none;
}
@media all and (max-width: 991px) {
header {
  width: 100%;
  padding: 5px 1%;
  background-color: rgba(255, 255, 255, 1.00);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  transition: .3s;
  z-index: 100;
}
}
#navi {
  background-color: rgba(255, 255, 255, 1.0);
  position: fixed;
  padding: 10px 1%;
  top: 0;
  left: 0;
  /*height: 60px;*/
  transition: .3s;
  width: 100%;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 50px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
}
@media screen and (max-width:575px) {
  .menu-left img {
    max-width: 260px;
  }
}
/* 上部メニュー */
#menu {
  float: right;
  margin-right: 10px;
}
#menu li {
  position: relative;
  white-space: nowrap;
  color: #000;
}
#menu li span {
  color: #000;
}
#menu li a {
  display: block;
  color: #000;
}
#menu > li {
  float: left;
  margin: 0 8px;
  line-height: 60px;
  font-size: 15px;
  font-weight: bold;
}
/* パソコンでは V を非表示 */
#menu > li .pd {
  display: none;
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
/* スマホ用 */
@media screen and (max-width: 1199px) {
  /* 基本非表示 */
  #menu {
    display: none;
    margin-top: 20px;
  }
  #menu li {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
    white-space: nowrap;
  }
  #menu > li {
    margin-right: -20px;
  }
  /* V を表示 */
  #menu > li .pd {
    display: inline-block;
    width: 100%;
  }
  #menu li a {
    display: inline-block;
  }
  #menu li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu li i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}
/* ドロップダウンメニュー */
#menu li ul {
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* 子メニュー */
#menu > li > ul li {
  font-size: 14px;
  display: none;
  padding: 0px 20px;
  background-color: #FFF;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #DDD;
}
#menu > li > ul li a {
  color: #000;
}
#menu li ul li:first-child {
  border-top: 1px solid #000;
}
#menu li ul li:last-child {
  border-bottom: 1px solid #000;
}
#menu li ul li ul {
  top: -1px;
  left: 100%;
}
#menu li ul li ul li ul, #menu li:nth-child(n+3) ul li ul {
  left: inherit;
  right: 100%;
}
#menu > li > ul {
  margin-left: -40px;
  width: 10vw;
}
/* パソコン用 */
@media screen and (min-width: 1199px) {
  #menu li a:hover {
    color: #1d2088;
  }
  #menu li ul li a:hover {
    color: #1d2088;
  }
  #menu > li:hover > ul > li, #menu li ul li:hover > ul > li {
    display: block;
  }
  /* 階層がある場合の誘導の印 */
  #menu li ul li ul:before, #menu li ul li ul li ul:before, #menu li:nth-child(n+3) ul li ul:before {
    position: absolute;
    top: 28px;
    content: "";
    border: 5px solid transparent;
    display: block;
  }
  /* 通常タイプ */
  #menu li ul li ul:before {
    left: -10px;
    border-left-color: #666;
  }
  /* 右側タイプ */
  #menu li ul li ul li ul:before, #menu li:nth-child(n+3) ul li ul:before {
    right: -10px;
    border-right-color: #666;
  }
}
/* スマホ用 */
@media screen and (max-width: 1199px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * #menu {
    display: block;
  }
  #menu-navibtn:checked ~ * #menu > li {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu > li ul {
    line-height: 50px;
  }
  #menu > li > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  #menu li ul {
    position: static;
  }
  /* 子メニュー */
  #menu > li > ul {
    margin-left: initial;
    position: relative;
  }
  #menu li ul li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu ul li:last-child {
    border-bottom: none;
  }
  #menu > li > ul li {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  #menu li ul li ul {
    top: inherit;
    left: 0;
  }
  #menu li ul li:last-child {
    border-bottom: none;
    margin-bottom: 20px;
  }
  /* 子メニューがクリックされた時 */
  #menu input[type="checkbox"]:checked ~ label ~ ul > li {
    max-height: inherit;
    overflow-y: visible;
    display: block;
  }
  .angletoggle:before {
    content: "\f103";
  }
  #navi input[type="checkbox"]:checked ~ label .pd .angletoggle:before {
    content: "\f102";
  }
}
/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1199px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before, #navibtn span span::after, #navibtn span::after {
    position: absolute;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top: 19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }

}



/* footer */
footer {
    padding-bottom: 1%;
    padding-top: 5%;
    background-color: #1D2088;
    color: #fff;
}
@media screen and (max-width: 575px) {
footer {
    padding: 5%;    
}
}
.footer_logo {
    margin-bottom: 10px;
}
.footer_tx {
  font-size: 14px; 
    margin-top: 5px;
}
.footer_nav {
  display: flex;
    flex-wrap: wrap; /* 折返し可 */
}
@media screen and (max-width: 991px) {
.footer_nav {    
    margin-top: 30px;
}
}
.footer_nav li {
    font-size: 14px;
    padding-right: 20px;
    padding-bottom: 5px;
    line-height: 1.8;    
    /*width: 30%;*/
}
.footer_nav li:before{
  content:'\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;  
  margin-right:5px;
}
/*@media screen and (max-width: 1199px) {
.footer_nav li {    
    width: 48%;
}
}*/
.footer_nav li a {
    color: #fff;
}
.footer_nav li a:hover {
    color: rgb(242, 127, 136);
	transition : 1s;
}
.footer_copy {
    font-size: 14px;
    margin-top: 10%;
    text-align: center;
}
@media screen and (max-width: 575px) {
.footer_copy {    
    margin-bottom: 15%;
	margin-top: 5%;
	font-size: 10px;
}
  }
/* footer ボタン */
.footer-btn-s {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer-btn-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }
  .footer-btn-s {
    position: fixed;
    width: 100%;
    /* right: 10px; */
    bottom: 0px;
    z-index: 92;
    transform: translateY(100px);
  }
  .footer-btn {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-btn a {
    color: #fff;
    font-size: 1.5vw;
  }
  .footer-btn li:first-of-type {
    width: 45%;
    background-color: rgba(0,150,26,1.00);
    padding: 10px 0;
    text-align: center;    
  }
  .footer-btn li:nth-of-type(2) {
    width: 45%;
    background-color: rgba(42,188,0,1.00);
    padding: 10px 0;
    text-align: center;    
  }
   .footer-btn li:nth-of-type(3) {
  width: 10%;
  background: rgb(24, 24, 24);
  padding: 10px 0;
  text-align: center;
  opacity: .9;
  /*border-radius: 3px 3px 0 0;*/
} 
}
@media screen and (max-width: 767px) {

.footer-btn a {    
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 575px) {

.footer-btn a {    
    font-size: 3.3vw;
  }
}


/* footer_tel ボタン */
  .footer-tel-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }
  .footer-tel-s {
    position: fixed;
    width: 50px;
     right: 5px; 
    bottom: 155px;
    z-index: 92;
    transform: translateY(100px);
  }

/* ページトップ */
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #0F1047;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    color: #fff;*/
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    /* font-size:0.6rem; */
    transition: all 0.3s;
    font-size: 10px;
}
#page-top a:hover {
    /*background-color: #B12F00;*/
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9992;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

#page-top a i {
    font-size: 25px;
}



/*# 固定ナビ */

.contact_pc{
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 101;
}

.contact_pc li{
    background-position: 0%;
    background-color: #E1E1E1;
    margin-bottom: 20px;
}
.contact_pc li img{
    width: 40px;    
}

/*
.contact_pc li:nth-child(2){
    background-color: #CE7F00;
}*/

.contact_pc li:hover{
    opacity: 0.95;
}


/*@media (max-width: 767px) {
.contact_pc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 101;
    top: auto;
}

.contact_pc li {
    float: left;
    width: 50.0%;
    background: #EC4E10;	
	text-align: center;
}*/

/*.contact_pc li:nth-child(2) {
    background-color: #CE7F00;
}*/

/*.contact_pc li:nth-child(3) {
    width: 12.8%;
    background: #062275;
}*/

/*.contact_pc li a img {
    max-height: 60px;
    vertical-align: middle;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}
}*/

/*# 各ページhead */
.head_area {
    width: 100%;
    height: 70vh;
    padding-top: 5%;
    padding-bottom: 5%;
    color: #808080;
}

@media screen and (max-width:575px) {
.head_area {
    height: 80vh;
    
}	
}
.head_ttl {
    font-size: 2.6rem;
    letter-spacing: 0.2em;
    margin-top: 15vh;
    margin-bottom: 10px;
}
@media screen and (max-width:575px) {
.head_ttl {
    margin-top: 35vh;
	text-shadow: 
		#fff 1px 1px 0, #fff -1px -1px 0,/*右下、左上*/
		#fff -1px 1px 0, #fff 1px -1px 0,/*右上、左下*/
        #fff 0px 1px 0, #fff  0-1px 0,/*右、左*/
        #fff -1px 0 0, #fff 1px 0 0;/*上、下*/
    
}	
}
.head_subttl {
    font-size: 1.2rem;
    text-transform: capitalize;
}
@media screen and (max-width:575px) {
.head_subttl {
	text-shadow: 
		#fff 1px 1px 0, #fff -1px -1px 0,/*右下、左上*/
		#fff -1px 1px 0, #fff 1px -1px 0,/*右上、左下*/
        #fff 0px 1px 0, #fff  0-1px 0,/*右、左*/
        #fff -1px 0 0, #fff 1px 0 0;/*上、下*/
    
}	
}
.head_photoarea {
    width: 100%;
    padding-top: 0%;
    padding-bottom: 0%;
    height: 46vh;    
}

/*# パンくず */
.pan_area {
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}
.pan_area ul li {
    display: inline-block;
    margin-right: 5px;
}
.pan_area ul li a:after {
    content: "＞";
    margin-left: 5px;
}
.pan_area_r {
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 10px;
	text-align: right;
}
@media (max-width: 576px) {
.pan_area_r {	
	text-align: left;
}
}
.pan_area_r ul li {
    display: inline-block;
    margin-right: 5px;
}
.pan_area_r ul li a:after {
    content: "＞";
    margin-left: 5px;
}

/*# contact_area */
.contact_area {
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 10%;
    padding-top: 10%;
    background-image: url(../img/contact_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50% auto;
}
@media (max-width: 575px) {
.contact_area {    
    background-image: none;    
}
}
.contact_read {
    font-size: 18px; 
    margin-top: 20px;
	margin-bottom: 20px;
    text-align: center;
}
.contact_tel {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}
.contact_tel a {
    color: #333;
}
.contact_tel img {
    vertical-align: middle;
    margin-right: 10px;
}
.contact_time {
    font-size: 14px; 
    text-align: center;
}
.contact_list {
    display: flex;
    flex-wrap: wrap; /* 折返し可 */
    justify-content: center;
    justify-items: center;
    margin-top: 5%;
}


/* 子要素 */
.contact_list li {
    width: 35%;
    margin-left: 3%;
	margin-right: 3%;
}
@media all and (max-width: 1399px) {
.contact_list li {
    width: 44%; 
    margin-left: 3%;
	margin-right: 3%;
}
}
@media all and (max-width: 575px) {
.contact_list li {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 20px;
}
}

/*# リンクボタン */
.btn-bc a {
    text-decoration: none;
    text-transform: uppercase;
    background:rgb(96, 98, 171);	
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
	border-radius: 10px;
}

.btn-bc a:hover {
	background-color: rgb(142, 143, 195);
	box-shadow:0px 0px 10px #666;
	transition : 1s;
}
.btn-bc2 a {
    text-decoration: none;
    text-transform: uppercase;
    background:rgb(237, 76, 89);	
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
	border-radius: 10px;
}
.btn-bc2 a:hover {
	background-color: rgb(242, 127, 136);
	box-shadow:0px 0px 10px #666;
	transition : 1s;
}
.btn-bc3 a {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #8DBBE4;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
}
.btn-bc3 a:hover {
    background-color: #5A9CD8;
    box-shadow: 0px 0px 10px #666;
    transition : 1s;
}
.contact_arrow {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-top: 9.9px;
    border-radius: 9999px;
    background-color: #fff;
    margin-left: 10px;
}

.contact_arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}


.ttl_box {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.ttl_img {
  font-size: 20px;  
  color: #595757;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl_img {
    font-size: 14px; 
  }
}
.ttl_img img {
    vertical-align: middle;
}
.ttl_img::before {
    content: url("../img/ttl_l.svg");
    vertical-align: middle;
    padding-right: 7%;
    width: 1px;
}
.ttl_img::after {
    content: url("../img/ttl_r.svg");
    vertical-align: middle;
    padding-left: 7%;
	width: 1px;
}
.ttl_img_w img {
    vertical-align: middle;
}
.ttl_img_w::before {
    content: url("../img/ttl_lw.svg");
    vertical-align: middle;
    padding-right: 7%;
    width: 1px;
}
.ttl_img_w::after {
    content: url("../img/ttl_rw.svg");
    vertical-align: middle;
    padding-left: 7%;
	width: 1px;
}

.ttl_img2 img {
    vertical-align: middle;
}
.h2ttl_c {
    font-size: 30px;
    color: #595757;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
  .h2ttl_c {
    font-size: 14px; 
  }
}
.h2ttl_cw {
  font-size: 20px;  
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h2ttl_cw {
    font-size: 14px;
  }
}
.h2ttlsub_c {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}
.read_tx {
  font-size: 1.8rem;
  color: #000;
  font-family: 'Noto Serif JP', serif;
  padding-left: 20px;
  padding-right: 20px;
}

.contents_area {
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 0%;
    padding-top: 0%;
	/*background-color: #fff;*/
    /*color: #727171;*/
}
@media (max-width: 575px) {
.contents_area {    
    /*margin-left: 10px;
    margin-right: 10px;*/
}	
}
.back_white{
	background-color: #fff;
	padding-left:5%;
	padding-right:5%;
	padding-bottom:20%;
}
.back_white2{
	background-color: #fff;
	padding-left:5%;
	padding-right:5%;
	padding-bottom:5%;
}
.back_white3{
	background-color: #fff;
	padding-left:0;
	padding-right:0;
	padding-bottom:3%;
}
.back_gray{
	background-color: #808080;
	padding-left:5%;
	padding-right:5%;
	padding-bottom:3%;
}
.back_gray2{
	background-color: #4d4d4d;
	padding-left:5%;
	padding-right:5%;
	padding-bottom:3%;
}
.back_gray3{
	background-color: #E6E6E6;
	padding-left:5%;
	padding-right:5%;
	padding-bottom:3%;
}
.back_gray4{
	background-color: #808080;
	padding-left:5%;
	padding-right:5%;
	padding-top:3%;
}
.common_img{
	padding-left:0;
    padding-right:0;
}
@media (max-width: 991px) {
.common_img{
	padding-left:0;
    padding-right:0;
    padding-top:20px;
}
}
.common_img2{
	padding-left:0;
    padding-right:0;
}