@charset "utf-8";
/* CSS Document */
*,
::before,
::after{
  box-sizing: border-box;
  /* ↓↓debug code↓↓ */
  /* outline: 1px solid red; */
}
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color:#404040;
  font-size:16px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:0.05em;
  text-align:justify;
}
a {
  color:#032137;
  text-decoration: none;
}
h2,h3,h4{
/*   font-family: "Yu Kyokasho New M"; */
/*   font-family:	Kyoukasho ICA Medium; */
/*   font-family: 'Klee One', cursive; */
	font-family: IwaGTxtPro-Bd;
}
/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
::selection{
  background-color:#99C1DA;
}
::-moz-selection{
  background-color:#99C1DA;
}
body,
.nav_wrap.fixed,
#mainvisual,
header,
footer{
  min-width:1240px;
}
@media print{
html {
  -webkit-print-color-adjust: exact;
}
body {
  zoom: 80%;
}
.fixed {
  position: inherit !important;
}
}

/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility{
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

/*============================================================================

  header

============================================================================*/
header {
  width:100%;
  height:140px;/* navのtopと同じ値にする */
}
header .inner{
  position:relative;
  width:1200px;
  height: inherit;
  margin:auto;
}
/* ロゴ */
header .header_logo{
  position:absolute;
  top:9px;
  z-index: 11;
}
header .header_logo img{
  width:280px;
  height:auto;
}

/* 住所 */
.header_info{
  float:right;
  text-align:right;
  padding:26px 0 0;
}

/* ご予約・お問合せ */
.header_tel{
  float:right;
  text-align:right;
  line-height: 1;
  margin: 0 0 5px;
}
.header_tel a{
  color:#404040;
  position:relative;
  padding-left:25px;
  font-size:32px;
  letter-spacing:0.1em;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
}
.header_tel a span{
  font-size:22px;
  margin:0 5px 0 0;
}
.header_info_ad{
  font-size:16px;
  line-height: 1;
  letter-spacing: 0;
}
.header_links{
  display: flex;
  float: right;
  margin-left: 25px;
}
.header_links a{
  display: flex;
  justify-content: center;
	align-items:center;
  gap:10px;
  padding: 10px;
  height:80px;
  min-width: 180px;
  background-color: #1F2774;
  color: #fff;
  text-align: center;
  transition: background-color 0.5s ease;
  font-size:17px;
  letter-spacing: 0.1em;
/*   font-family: "Yu Kyokasho New M"; */
/*   font-family:	Kyoukasho ICA Medium; */
/*   font-family: 'Klee One', cursive; */
	font-family:IwaGTxtPro-Bd;
  line-height:1.3;
}
.header_links li:first-child a{
  background:#BF4F00;
}
.header_links li:nth-child(2) a{
  background:#4D8912;
}
.header_links li:nth-child(3) a{
  background:#032137;
}
.header_links a:hover{
  background-color: rgba(31,39,116,0.8);
}
/*============================================================================

  nav

============================================================================*/

.nav_wrap{
  position: absolute;
  z-index: 10;
  top: 40px;
  width: 100%;
}

.tgl_menu_list{
  width: 1200px;
  margin: 0 auto;
}
.tgl_menu_list ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:40px;
}
.tgl_menu_list ul li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgl_menu_list ul li.sp_btn{
  display:none;
}

/* リンクテキスト */
.tgl_menu_list ul li a,
.tgl_menu_list ul li p{
  position: relative;
  color:#404040;
  line-height: 1;
  text-align: center;
  padding:15px 0;
  font-weight: 400;
  letter-spacing: 0.1em;
	font-family: 'Noto Serif JP', serif;
  font-size:18px;
}

/* 英語 */
.tgl_menu_list ul li a span,
.tgl_menu_list ul li p span{
  display: block;
  line-height: 1;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-top: 9px;
}

.tgl_menu_list ul li.recruit_nav a,.tgl_menu_list ul li.contact_nav a {
  width:180px;
  height:60px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.tgl_menu_list ul li.recruit_nav a{
  background:#FFBF58;
  border:1px solid #FFBF58;
  transition:.2s;
}
.tgl_menu_list ul li.recruit_nav a:hover{
  color:#333;
  background:#fff;
}
.tgl_menu_list ul li.contact_nav a{
  background:#333;
  color:#fff;
  border:1px solid #333;
  transition:.2s;
}

.tgl_menu_list ul li.contact_nav a:hover{
  background:#fff;
  color:#333;
}

/* ホバー時に出る下線 */
.tgl_menu_list ul li a::after,
.tgl_menu_list ul li p::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #032137;
  transition: 0.2s ease-in-out;
  transform: scaleX(0);
}
.tgl_menu_list ul li a:hover::after,
.tgl_menu_list ul li.active a::after,
.tgl_menu_list ul li p:hover::after,
.tgl_menu_list ul li.active p::after{
  transform: scaleX(1);
}
.tgl_menu_list ul li.recruit_nav a::after,.tgl_menu_list ul li.contact_nav a::after{
  content:none;
}



.tgl_menu_list ul li.nav_mega_menu a:hover::after,
.tgl_menu_list ul li.nav_mega_menu p:hover::after{
  transform: rotate(-180deg) translateY(-11px);
}

/* ホバーエフェクト */
.tgl_menu_list ul li a:hover{
  color: #276ea0;
}

/* ------- スライドメニュー tabindex対応------- */
/* シングル */
.tgl_menu_list ul li.nav_single_menu:focus-within > div{
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/* メガ */
.tgl_menu_list ul li.nav_mega_menu:focus-within > .mega_menu_wrap{
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/* 追従時の設定 */
.nav_wrap.fixed{
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding:10px 0;
  background:#fff;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}
.nav_wrap.fixed .tgl_menu_list{
  top:100%;
}
.nav_wrap.fixed .tgl_menu_list ul{
  justify-content: center;
}

/*============================================================================

  #mainvisual

============================================================================*/

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual{
  display:block;
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
#mainvisual .inner{
  display:table;
  position:relative;
  height: inherit;
  margin: 0 auto;
  background-repeat:no-repeat;
}
#mainvisual p.headline{
  position:relative;
}

.mainvisual_wrap{
  width:calc(100% - 100px);
  background-position:center;
  background-size:cover;
  height: 250px;
  margin:auto;
}
.mv_about .mainvisual_wrap{
  background-image:url("../images/mv_about_pc.jpg");
}
.mv_service .mainvisual_wrap{
  background-image:url("../images/mv_service_pc.jpg");
}
.mv_recruit .mainvisual_wrap{
  background-image:url("../images/mv_recruit_pc.jpg");
}
.mv_contact .mainvisual_wrap{
  background-image:url("../images/mv_contact_pc.jpg");
}

/* 下層ページの見出し */
.mainvisual_headline {
  display: table-cell;
  padding-bottom:2px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7), 0 0 5px rgba(255,255,255,0.7);
  font-size:24px;
  font-family: 'Noto Serif JP', serif;
}
/* タイトル */
.mainvisual_headline p.headline{
  font-size: 42px;
  color: #fff;
  letter-spacing: 0.1em;
}
/*==================================================================

  #contents

==================================================================*/
main{
  display:block;
  overflow: hidden;
}
#container{
  padding-top:33px;
}

#contents{
  position:relative;
  width:1200px;
  margin:0 auto;
  padding-top:30px;
}




/*============================================================================

  $footer

============================================================================*/



footer {
  position:relative;
  width:100%;
}
footer p{
  text-align:center;
  margin:0 0 40px;
  letter-spacing: 0.05em;
}
footer .btn02 a{
  background:#333;
  color:#fff;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  width:320px;
  height:80px;
  display:flex;
  justify-content: center;
  gap:10px;
  align-items: center;
  margin:0 auto;
  transition:.2s;
}
footer .btn02 a:hover{
  background:#FFBF58;
}
.footer_info{
  position:relative;
  background:#F8F8F8;
  margin:50px 0 0;
}
/* フッターの医院概要 */
.footer_inner{
  position:relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:1200px;
  margin:0 auto;
  z-index:1;
}
.footer_inner h2{
  font-size:30px;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
}

/* フッターのナビ */
.footer_navi{
  padding:40px 0;
}
.footer_navi ul {
  position:relative;
  display:flex;
  align-items: center;
  justify-content: flex-end;
  gap:40px;
}
.footer_navi ul li {
  position:relative;
  height:inherit;
}
.footer_navi ul li a,.footer_navi ul li p{
  position:relative;
  display: block;
  line-height: 1.6;
  font-size:18px;
  color:#333;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif JP', serif;
}
.footer_navi ul li.box_nav a{
  background:#fff;
  width:180px;
  height:60px;
  display:flex;
  justify-content: center;
  align-items: center;
  border:1px solid #333;
  transition:.2s;
}
.footer_navi ul li.box_nav a:hover{
  background:#333;
  color:#fff;
}
.footer_navi ul li a::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #032137;
  transition: 0.2s ease-in-out;
  transform: scaleX(0);
}
.footer_navi ul li a:hover::after{
  transform:scale(1);
}
.footer_navi ul li.box_nav a::after{
  content:none;
}
.footer_navi ul li a:hover{
  color:#00408f;
}
.footer_navi ul li a span{
  position:relative;
  padding:0 5px;
}
/* ページトップ */
.pagetop,
.pagetop img{
  width:50px;
  height:25px;
}
.pagetop{
  position:relative;
  margin:20px auto 20px;
  text-align:center;
  cursor:pointer;

}
.pagetop img{
  display:inline-block;
  position:relative;
  top:0;
  transition:0.5s ease-in-out;
}
.pagetop:hover img{
  top:-5px;
  padding-bottom:5px;
  transform: rotateY(180deg);
}
/* コピーライト */
.copy{
  padding:20px 0;
  text-align: center;
  background:#fff;
}
.copy small{
  line-height:1;
  font-size:13px;
  letter-spacing:0.2em;
  color:#333;
}


/*==================================================================

  .タイトル

==================================================================*/
h1{
  font-size: 30px;
  position: absolute;
  width: 1200px;
  top: 41px;
  right: 0;
  left: 0;
  margin: auto!important;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
}
.tit01{
  font-size:30px;
  /* font-weight:600; */
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
  line-height:1;
  margin:0 0 80px;
  text-align:center;
}

.tit02{
  font-size:30px;
  text-align:center;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
  line-height:1.4;
  margin:0 0 40px;
}

.tit_sub_en{
  font-family: 'Noto Serif JP', serif;
  color:#DDA360;
  font-size:20px;
  letter-spacing: 0.12em;
  line-height:1;
  text-align:center;
  margin:0 0 10px;
}

/*==================================================================

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/*ボタン ゴースト*/
.btn01.center a{
	margin:0 auto;
}
.btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width:240px;
  height:80px;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
  font-size:20px;
  background:#fff;
  color:#333;
  transition:.3s;
}
.btn01 a span{
  text-decoration: underline;
}
.btn01 a:hover{
  color:#fff;
  background:#333;
  border:none;
}
.btn01 a:hover::before{
  position:absolute;
  left:0px;
  top:0px;
}
.btn01 {
  position: relative;
}


/*==================================================================

  $table

==================================================================*/


.tb01 {
  width:100%;
  margin:0 0 60px;
}

.tb01 th:first-of-type,.tb01 td:first-of-type{
  border-top:1px solid #dad9d9;
}

.tb01 th,.tb01 td{
  border-bottom:1px solid #dad9d9;
}

.tb01 th{
  width:300px;
  text-align:center;
  line-height:80px;
  vertical-align: middle;
  font-weight:600;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.12em;
}

.tb01 td{
  padding:20px 35px;
  min-height:80px;
  border-left:1px solid #dad9d9;
  vertical-align: middle;
}


/*==================================================================

  $box

==================================================================*/
.box{
	position:relative;
	width:1200px;
	margin:0 auto;
}
.box1{
  position:relative;
  width:1200px;
  margin:0 auto 120px;
}
.box2{
  margin-bottom:70px;
}
.box3{
	width:900px;
	margin:0 auto 50px;
}
.box4{
  position:relative;
  width:1000px;
  margin:0 auto;
}
.text {
  position:relative;
  margin-bottom:70px;
}
.text p {
  margin-bottom:1em;
  line-height:40px;
}
.tit_text{
  padding: 30px 0;
  margin-bottom: 20px;
}
.underline{
	position:relative;
  color:#ED7D31;
  font-weight:bold;
}
/* .underline em{
	position:relative;
} */
.underline em::before{
	position:absolute;
	left:0;
	bottom:-3px;
	z-index:-1;
	width:100%;
	height:13px;
	background:#FFE7D6;
	content:none;
}




/********************************
  .top_service
*********************************/
.top_service{
  position:relative;
  padding:100px 0 150px;
}
.top_service::before{
  position:absolute;
  bottom:0;
  width:100%;
  height:350px;
  background:#F2F2ED;
  content:"";
}
.top_service_list{
  display:flex;
  justify-content: center;
  gap:60px;
}
.top_service_item{
  position:relative;
  width:340px;
}
.top_service_item a figure{
  overflow: hidden;
}
.top_service_item a:hover figure img{
  transform:scale(1.2,1.2);
  transition:.4s;
}
.top_service_item h3{
  position:absolute;
  left:20px;
  top:-47px;
  font-size:22px;
  font-family: 'Noto Serif JP', serif;
  line-height:1;
  letter-spacing: 0.25em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding:16px;
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,0.2);
}
.top_service_info{
  position:absolute;
  right:0;
  bottom:0;
  width:240px;
  background:#F2F2ED;
  padding:20px 15px 10px;
}
.top_service_info p{
  line-height:28px;
  margin:0 0 5px;
  letter-spacing: 0.05em;
}
.btn_service{
  text-align:right;
}
.top_service_item a:hover .btn_service{
  transition:.2s;
  transform:translate(10px,0);
}


/********************************
  .top_message
*********************************/
.top_message{
  position:relative;
  background:#F2F2ED;
  padding:0 0 240px;
}
.top_message figure{
  position:absolute;
  top:0;
  left:0;
  width:calc(50% - 40px);
  overflow: hidden;
}
.top_message figure img{
  width:auto;
  max-width:none;
  height:645px;
}
.top_message_info{
  width:50%;
  margin:0 0 0 auto;
  padding:80px 0 0;
}
.top_message_info h2{
  font-size:50px;
  line-height:1.65;
  font-family: 'Noto Serif JP', serif;
  margin:0 0 40px;
  letter-spacing: 0.2em;
}
.top_message_info p{
  line-height:1.8;
}
.top_message_info .tit_en{
  font-size:30px;
  letter-spacing: 0.2em;
  color:#9B9B9B;
  font-family: 'Noto Serif JP', serif;
  line-height:1;
  margin:0 0 15px;
}


/********************************
  .top_work
*********************************/
.top_work{
  padding:5px 0;
}
.top_work_info{
  position:relative;
  padding:90px 0;
  background:url(../images/top_work_bg_pc.jpg);
  background-size:cover;
  background-position: center;
  margin:0 0 5px;
}
.top_work_info::before{
  position:absolute;
  top:0;
  left:calc(50% - 445px);
  height:450px;
  width:2px;
  background:#fff;
  content:"";
}
.top_work_tit{
  position:absolute;
  left:100px;
  top:10px;
  color:#fff;
  font-size:28px;
  letter-spacing: 0.15em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
}
.top_work_text{
  width:50%;
  color:#fff;
  margin:0 0 0 auto;
}
.top_work_text h2{
  font-size:36px;
  letter-spacing: 0.2em;
  line-height:1.4;
  margin:0 0 110px;
  font-weight:600;
  font-family: 'Noto Serif JP', serif;
}
.top_work_text p{
  line-height:2;
  font-family: 'Noto Serif JP', serif;
}
.top_work_list{
  display:flex;
  gap:5px;
}
.top_work_list figure{
  width:100%;
}


/********************************
  .top_recruit
*********************************/
.top_recruit{
  padding:160px 0 180px;
}
.top_recruit .box{
  position:relative;
  background:url(../images/top_recruit_bg.jpg);
  background-size:cover;
  padding:135px 80px 70px;
}
.top_recruit h2{
  position:absolute;
  top:-70px;
  left:0;
  width:360px;
  text-align:center;
  padding:50px 0;
  font-size:30px;
  letter-spacing: 0.2em;
  line-height:1;
  font-family: 'Noto Serif JP', serif;
  background:#fff;
}
.top_recruit h3{
  margin:0 0 110px;
  font-family: 'Noto Serif JP', serif;
  color:#fff;
  font-size:30px;
  letter-spacing: 0.2em;
}
.top_recruit_text{
  color:#fff;
  display:flex;
  justify-content: space-between;
}


/*==================================================================

  $service （事業内容）

==================================================================*/

.service_item{
  width:900px;
  padding:50px;
  background:#F2F2ED;
  margin:0 auto 50px;
}
.service_tit{
  position:relative;
  margin:0 0 40px;
}
.service_tit h3{
  position:absolute;
  left:20px;
  bottom:20px;
  font-size:22px;
  text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
  padding:5px 20px;
  background:#fff;
}
.service_tit h3 span{
  margin:0 20px 0 0;
}
.service_feature{
  display:flex;
  justify-content: center;
  gap:20px;
  margin:40px 0 0;
}
.service_feature_item{
  background:#fff;
  padding:30px 20px;
  box-shadow:0 0 10px rgba(0,0,0,0.05);
  width:100%;
}
.service_feature_item h4{
  font-size:18px;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
  margin:0 0 30px;
  text-align:center;
  line-height:1;
}
.service_feature_item p{
  line-height:1.6;
  font-size:14px;
}


/*==================================================================

  $about （店舗情報）

==================================================================*/

.outline .tb01{
  width:80%;
  margin:60px auto 0;
}



/*==================================================================

  $recruit （採用情報）

==================================================================*/

.recruit_message{
  text-align:center;
}

.recruit_tel{
  text-align:center;
  margin: 0 0 40px;
}
.recruit_tel a{
  display:inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size:30px;
  letter-spacing: 0.1em;
}
.recruit_tel a span{
  font-size:18px;
  margin:0 10px 0 0;
}

/*==================================================================

  $contact （下層）

==================================================================*/

.contact{
  
}

.tb04 {
	width:100%;
	border-spacing: 1px;
	border-collapse: separate;
	background-color: #f0f0f0;
}
.tb04 td, .tb04 th {
	padding: 12px 36px;
}
.tb04 th {
	font-weight: bold;
	text-align: left;
	color: #666;
	background-color: #FAFAFA;
	font-size: 16px;
	word-wrap: break-word;
}
.tb04 th span {
	font-size: 13px;
}
.tb04 td {
	background-color: #ffffff;
	color: #666666;
}

.tb04 tbody tr:first-child th{
}

.table_note{
	font-size: 90%;
	padding-top: 40px;
}

.table_note li{
	line-height: 1.8;
}

.table_note li:before{
	top:10px;
}

.tb04 input[type="text"],.tb04 input[type="email"],.tb04 input[type="tel"] {
    height: 50px;
    width: 100%;
    padding:5px;
}

.tb04 .contact_radio input{
	margin-right: 20px;
	height: auto;
	width: auto;
}

form textarea {
    border: 1px solid #ccc;
    width: 100%;
    padding:5px;
}
.submit_btn{
	padding-top: 40px;
	text-align: center;
	font-size: 16px;
}

.submit_btn input[type="reset"]{
	display: inline-block;
	width: 200px;
	height: 44px;
	margin-right: 40px;
	border: solid 1px #333;
  background:#333;
	color: #fff;
	transition: ease-in-out 0.3s;
  cursor: pointer;
}

.submit_btn input[type="reset"]:hover{
	background-color: #fff;
  color: #333;
  transition: ease-in-out 0.3s;
}

.submit_btn input[type="submit"]{
	display: inline-block;
	width: 300px;
	height: 44px;
	margin-right: 40px;
	border: solid 1px #FFBF58;
	background-color: #FFBF58;
	color: #333;
	transition: ease-in-out 0.3s;
	color: #fff;
  cursor: pointer;
}

.submit_btn input[type="submit"]:hover{
	background-color: #FFBF58;
  color: #fff;
  transition: ease-in-out 0.3s;
}

.required {
    margin-left: 20px;
    padding: 6px 10px;
    background-color: #d37777;
    border-radius: 3px;
    color: #fff;
}

/*==================================================================

  $thanks （下層）

==================================================================*/
.thank_top_text{
	line-height:40px;
	letter-spacing: 0.1em;
	font-size:18px;
	margin:0 0 40px;
	text-align:center;
}
.flag{
	width:648px;
	margin:0 auto 40px;
}

/*==================================================================

  .breadcrumb（ぱんくず）

==================================================================*/
#breadcrumb {
  position: relative;
  width: 1200px;
  min-height:31px;
  margin: 0 auto 50px;
  font-size: 18px;
}
#breadcrumb ol:last-child {
  margin: 0 auto;
}
#breadcrumb i {
  /*margin-left: 35px;*/
  margin-right: 5px;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb li {
  float: left;
  margin-right: 10px;
}
#breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  padding-left: 5px;
}
#breadcrumb li:last-child:after {
  content: "";
}
#breadcrumb li:last-child a{
  color:#d04634 !important;
}




/*==================================================================

  .404_p

==================================================================*/
.none_page_p{
  text-align: center;
  font-size: 26px;
  padding-top: 100px;
}

/*==================================================================

  CSSアニメーション

==================================================================*/
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before{
  background: #032137;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.img-wrap.is-visible:before {
  animation: img-wrap 0.6s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}


/* フェードイン */
.fadeIn{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeIn{
  animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* フェードイン（下→上） */
.fadeInUp{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInUp{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0s;
}
.is-visible.fadeInUp.s01{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.1s;
}
.is-visible.fadeInUp.s02{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.2s;
}
.is-visible.fadeInUp.s03{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.3s;
}
.is-visible.fadeInUp.s04{
  animation: fadeInUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  animation-delay: 0.4s;
}
@keyframes fadeInUp {
  0%{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（右→左） */
.fadeInRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInRight{
  animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInRight {
  0%{
    opacity: 0;
    transform: translate3d(100%, 0, 0);;
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（左→右） */
.fadeInLeft{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInLeft{
  animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInLeft {
  0%{
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フリップ（右回転） */
.flipRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.flipRight{
  animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  transform: rotateY(-180deg);
}
@keyframes flipRight {
  0%{
    opacity: 0;
    transform: rotateY(-180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* フリップ（左回転） */
.flipLeft{
  opacity: 0;
  visibility: visible;
  transform: rotateY(180deg);
}
.is-visible.flipLeft{
  animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes flipLeft {
  0%{
    opacity: 0;
    transform: rotateY(180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* 恒常的に動くアニメーション */

/* ゆっくり回転（右回転） */
.rotateRight{
  animation: rotateRight 20s linear infinite;
}
@keyframes rotateRight {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(360deg);
  }
}

/* ゆっくり回転（左回転） */
.rotateLeft{
  animation: rotateLeft 20s linear infinite;
}
@keyframes rotateLeft {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(-360deg);
  }
}

/* 浮遊（基準点から上） */
.floatingUp{
  animation: floatingUp 10s ease-in-out infinite;
}
@keyframes floatingUp {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 浮遊（基準点から下） */
.floatingDown{
  animation: floatingDown 10s ease-in-out infinite;
}
@keyframes floatingDown {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 生き物が跳ねる（鳥、リスなど） */
.jumping{
  position: relative;
  animation: jumping 1s ease-in-out infinite;
}
@keyframes jumping{
	0%{
		top: 0;
	}
	10%{
		top: -5px;
	}
	20%{
		top: 0px;
	}
	30%{
		top: -5px;
	}
	40%{
		top: 0px;
	}
	100%{
		top: 0px;
	}
}

/*common*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}
address,body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,option,p,pre,select{margin:0;padding:0;-webkit-text-size-adjust:100%}img{vertical-align:middle;}iframe{vertical-align:middle;}li,ul{list-style:none;margin:0;padding:0}a img{border:none}.w010par{width:10%}.w020par{width:20%}.w025par{width:25%}.w050par{width:50%}.w075par{width:75%}.w100par{width:100%}.w010{width:10px}.w020{width:20px}.w030{width:30px}.w040{width:40px}.w050{width:50px}.w060{width:60px}.w070{width:70px}.w080{width:80px}.w090{width:90px}.w100{width:100px}.w110{width:110px}.w120{width:120px}.w130{width:130px}.w140{width:140px}.w150{width:150px}.w160{width:160px}.w170{width:170px}.w180{width:180px}.w190{width:190px}.w200{width:200px}.w210{width:210px}.w220{width:220px}.w230{width:230px}.w240{width:240px}.w250{width:250px}.w255{width:255px}.w260{width:260px}.w270{width:270px}.w280{width:280px}.w290{width:290px}.w300{width:300px}.w305{width:305px}.w310{width:310px}.w320{width:320px}.w330{width:330px}.w340{width:340px}.w350{width:350px}.w360{width:360px}.w365{width:365px}.w370{width:370px}.w380{width:380px}.w390{width:390px}.w400{width:400px}.w410{width:400px}.w415{width:415px}.w420{width:420px}.w430{width:430px}.w435{width:435px}.w440{width:440px}.w450{width:450px}.w460{width:460px}.w470{width:470px}.w480{width:480px}.w490{width:490px}.w500{width:500px}.w510{width:510px}.w520{width:520px}.w530{width:530px}.w540{width:540px}.w550{width:550px}.w560{width:560px}.w570{width:570px}.w580{width:580px}.w590{width:590px}.w600{width:600px}.w610{width:610px}.w620{width:620px}.w630{width:630px}.w640{width:640px}.w650{width:650px}.w660{width:660px}.w670{width:670px}.w680{width:680px}.w690{width:690px}.w700{width:700px}.w710{width:710px}.w720{width:720px}.w730{width:730px}.w740{width:740px}.w750{width:750px}.w760{width:760px}.w765{width:765px}.w960{width:960px}.w980{width:980px}.h030{height:30px}.h180{height:180px}.h190{height:190px}.h200{height:200px}.h240{height:240px}.h250{height:250px}.h280{height:280px}.h300{height:300px}.h350{height:350px}.mt00{margin-top:0!important}.mt01{margin-top:1px}.mt02{margin-top:2px}.mt03{margin-top:3px}.mt04{margin-top:4px}.mt05{margin-top:5px}.mt06{margin-top:6px}.mt07{margin-top:7px}.mt08{margin-top:8px}.mt09{margin-top:9px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt90{margin-top:90px}.mt100{margin-top:100px}.mt110{margin-top:110px}.mt120{margin-top:120px}.mr00{margin-right:0!important}.mr01{margin-right:1px}.mr02{margin-right:2px}.mr03{margin-right:3px}.mr04{margin-right:4px}.mr05{margin-right:5px}.mr06{margin-right:6px}.mr07{margin-right:7px}.mr08{margin-right:8px}.mr09{margin-right:9px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.mr100{margin-right:100px}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px}.mb02{margin-bottom:2px}.mb03{margin-bottom:3px}.mb04{margin-bottom:4px}.mb05{margin-bottom:5px}.mb06{margin-bottom:6px}.mb07{margin-bottom:7px}.mb08{margin-bottom:8px}.mb09{margin-bottom:9px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.mb90{margin-bottom:90px}.mb100{margin-bottom:100px}.ml00{margin-left:0!important}.ml01{margin-left:1px}.ml02{margin-left:2px}.ml03{margin-left:3px}.ml04{margin-left:4px}.ml05{margin-left:5px}.ml06{margin-left:6px}.ml07{margin-left:7px}.ml08{margin-left:8px}.ml09{margin-left:9px}.ml10{margin-left:10px}.ml12{margin-left:12px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.ml90{margin-left:90px}.ml100{margin-left:100px}.ml140{margin-left:140px}.ml160{margin-left:160px}.ma10{margin:10px}.ma15{margin:15px}.ma_auto{margin-left:auto;margin-right:auto}.pt00{padding-top:0!important}.pt01{padding-top:1px}.pt02{padding-top:2px}.pt03{padding-top:3px}.pt04{padding-top:4px}.pt05{padding-top:5px}.pt06{padding-top:6px}.pt07{padding-top:7px}.pt08{padding-top:8px}.pt09{padding-top:9px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt70{padding-top:70px}.pt80{padding-top:80px}.pt90{padding-top:90px}.pt100{padding-top:100px}.pt120{padding-top:120px}.pr00{padding-right:0!important}.pr01{padding-right:1px}.pr02{padding-right:2px}.pr03{padding-right:3px}.pr04{padding-right:4px}.pr05{padding-right:5px}.pr06{padding-right:6px}.pr07{padding-right:7px}.pr08{padding-right:8px}.pr09{padding-right:9px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px!important}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr60{padding-right:60px}.pr70{padding-right:70px}.pr80{padding-right:80px}.pr90{padding-right:90px}.pr100{padding-right:100px}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px}.pb02{padding-bottom:2px}.pb03{padding-bottom:3px}.pb04{padding-bottom:4px}.pb05{padding-bottom:5px}.pb06{padding-bottom:6px}.pb07{padding-bottom:7px}.pb08{padding-bottom:8px}.pb09{padding-bottom:9px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb70{padding-bottom:70px}.pb80{padding-bottom:80px}.pb90{padding-bottom:90px}.pb100{padding-bottom:100px}.pl00{padding-left:0!important}.pl01{padding-left:1px}.pl02{padding-left:2px}.pl03{padding-left:3px}.pl04{padding-left:4px}.pl05{padding-left:5px}.pl06{padding-left:6px}.pl07{padding-left:7px}.pl08{padding-left:8px}.pl09{padding-left:9px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pl70{padding-left:70px}.pl80{padding-left:80px}.pl90{padding-left:90px}.pl100{padding-left:100px}.pa01{padding:1px}.pa02{padding:2px}.pa03{padding:3px}.pa04{padding:4px}.pa05{padding:5px}.pa10{padding:10px}.pa15{padding:15px}.fr{float:right}.fl{float:left}.fr10{float:right;margin-left:10px}.fr15{float:right;margin-left:15px}.fr30{float:right;margin-left:15px}.fl10{float:left;margin-right:10px}.fl15{float:left;margin-right:15px}.fl30{float:left;margin-right:30px}.txt10{font-size:10px}.txt11{font-size:11px}.txt12{font-size:12px}.txt13{font-size:13px}.txt14{font-size:14px}.txt15{font-size:15px}.txt16{font-size:16px}.txt17{font-size:17px}.txt18{font-size:18px}.txt19{font-size:19px}.txt20{font-size:20px}.txt21{font-size:21px}.txt22{font-size:22px}.txt23{font-size:23px}.txt24{font-size:24px}.txt25{font-size:25px}.txt26{font-size:26px}.txt27{font-size:27px}.txt28{font-size:28px}.txt29{font-size:29px}.txt30{font-size:30px}.txt31{font-size:31px}.txt32{font-size:32px}.txt33{font-size:33px}.txt34{font-size:34px}.txt35{font-size:35px}.txt36{font-size:36px}.txt37{font-size:37px}.txt38{font-size:38px}.txt39{font-size:39px}.txt40{font-size:40px}.bold{font-weight:700}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right}.clear{clear:both}.v_top{vertical-align:top}.v_mid{vertical-align:middle}.v_btm{vertical-align:bottom}.color_red{color:#f33}.color_pink{color:#ed8c96}.color_blue{color:#00408f}.color_green{color:#479f9d}.color_ore{color:#ff8327}.color_yellow{color:#ffeb8b}.color_beige{color:#dac58b}.color_brown{color:#9b8052}.color_navy{color:#1f2774}.color_black{color:#3e3a39}.ls_0{letter-spacing:0}.ls_1{letter-spacing:1px}.indent{margin-left:1em!important;text-indent:-1em}.line_h_2{line-height:2!important}.clearfix:after{display:block;clear:both;content:""}.sp{display:none!important}