/*
Theme Name: seiyukai.jp
Theme URI: https://www.seiyukai.jp/
Description: 医療法人整友会公式サイト
Version: 1
Author: NEXT LLC
Author URI: https://www.x-tc.jp/
*/


@charset "utf-8";


/*基本条件
----------------------------------------------------------------------------------------------------*/

/* カラー設定
---------------------------------------------------------------------------*/
	/* #eb6100 main(中心色) */
	/* #D63E00 base(mainの同系/濃色) */
	/* #EB7D00 accent(mainの同系/薄色) */
	/* #0076C9 accent(mainの補色) */

/*レスポンシブデザイン ブレークポイント
---------------------------------------------------------------------------*/
	/* 画面幅 960px以下の設定 @media screen and (max-width:960px){ } */
	/* 画面幅 480px以下の設定 @media screen and (max-width:480px){ } */

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');*/

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
/*@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);*/

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");







/*テーマカラーの定義（CSS変数）
---------------------------------------------------------------------------*/
:root {
    --base-color: #eb6100; /*中心色*/
    --sub01-color: #D63E00; /*mainの同系/濃色*/
    --sub02-color: #EB7D00; /*mainの同系/薄色*/
    --sub03-color: #0076C9; /*mainの補色*/
}


/*デザイン
----------------------------------------------------------------------------------------------------*/

/* 全体の設定
---------------------------------------------------------------------------*/
html { scroll-behavior: smooth; }

body {
	margin: 0px;
	padding: 0px;
	color: #000000;	
	font-family: "フォーク M", "Folk Medium", Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight:400;
	line-height: 2;
	background: #ffffff;
	-webkit-text-size-adjust: none;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul{list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.inner {
	width: auto;
	margin: 0 10em;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: var(--sub02-color);
	text-decoration: none;
}

/*強調
---------------------------------------------------------------------------*/
strong {
	color: var(--base-color);
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
    max-width: 1920px;
	background-color: rgba(214,60,0,1);
	position: fixed;
	height: 100px;
    z-index: 100;
}

/*ヘッダースクロール・カラー変更スクリプト*/
#visible {
	top: 0;
	transition: all 1.0s ease;
}
.hidden {
	background-color: rgba(0,0,0,0.2);
	transition: all 1.0s ease;
}

/*ロゴ画像の設定*/
header #logo {
	width: 200px;
	float: left;
	line-height:100px;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューバー*/
#menubar {
	float: right;
	height:100px;
}

/*メニューリンク*/
#menubar li {
	float: left;
	margin:0 0.3em;
	line-height:100px;
}
#menubar a {
	/*display: block;*/
	color:#ffffff;
	/*font-size:1em;*/
	text-decoration: none;
	padding: 0 0.5em;
	-webkit-transition: 0s;
	transition: 0s;
}

/*メニューボタン*/
#menubar li#frame-btn {
	margin:0 0 0 1.5em;
}
#menubar li#frame-btn a{
	padding: 1em 0.5em 1em 2em;
	background-color: var(--base-color);
	color: #ffffff;
}
#menubar li#frame-btn a i{
	padding:0 1.2em 0 0.6em;
}

/*メニューリンク　マウスオン時*/
#menubar a:hover {
	color: #999999;
}

/*メニューボタン　マウスオン時*/
#menubar li#frame-btn a:hover {
	background-color:var(--sub02-color);
	color: #ffffff;
}
#menubar li#frame-btn a:hover i {
	transition: all 0.5s;
	transform: translateX(0.3em);
}

/*スマホ用メニュー非表示*/
#menubar-s {
	display: none;
}

/*３本バーアイコン非表示*/
#menubar_hdr {
	display: none;
}

/*スマホ用コンタクトボタン非表示*/
#contact-btn {
	display: none;
}

/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	/*margin-top:0.1em;*/
}

/*ドロップダウンメニューリンク*/
#menubar ul.ddmenu li {
	float: none;
	line-height:50px;
	width:200px;
    background-color: var(--sub01-color);
}
#menubar ul.ddmenu li a {
	/*background:var(--sub01-color);*/
}

/*ドロップダウンメニューリンク マウスオン時*/
#menubar ul.ddmenu li a:hover {
	color: #999999;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
}

.contents h2 {
	clear: both;
	font-size:2.8em;
    line-height: 4.8rem;
    letter-spacing: 0.1em;
}
.contents h2 span {
	color:var(--base-color);
}

.contents h3 {
	clear: both;
	font-size:1.6em;
}

.contents h4 {
	clear: both;
	font-size:1.2em;
}

.contents p {
	padding: 0;
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	clear: both;
	color: #ffffff;
	background: var(--sub01-color);
	text-align: center;
	padding: 1.2em 0 0.6em;
}

.footer-logo img {
	width:180px;
	padding-bottom:0.5em;
}

small {
	font-size:0.8em;
}

/*メイン画像
---------------------------------------------------------------------------*/
/*トップページ メインイメージ*/
.hero {
	position:relative;
}

.hero-image-responsive {
    display: none;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0, 0.5) 0.3px, rgba(0, 0, 0, 0.1) 3px);
    background-size: 2px 2px;
}
.hero-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.hero-title {
	font-size: 3em;
	/*line-height: 1.6;*/
	/*writing-mode: vertical-rl; */
	letter-spacing: 0.2em;
	color: #ffffff;
	margin:0 auto;
}

/*サブページ メインイメージ*/
.sub-hero {
	position:relative;
}
.sub-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}
.sub-hero-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.sub-hero-title {
	font-size: 2.8em;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #ffffff;
	position: relative;
	display: inline-block;
    padding: 0 120px;
	margin: 0 auto;
}
.sub-hero-title:before,
.sub-hero-title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 100px;
    height: 1.5px;
    background-color: #ffffff;
}
.sub-hero-title:before {
    left: 0;
}
.sub-hero-title:after {
    right: 0;
}
.sub-hero-title span{
	display:block;
	font-size: 0.5em;
    padding: 1em;
}

/*スライダー
---------------------------------------------------------------------------*/
/*.infiniteslide1 img{
	width:840px;
}*/
#slider-overlay {
	position:absolute;
	top: 0;
	z-index: 10;
	width:100%;
	height:100%;
	background: radial-gradient(rgba(0, 0, 0, 0.5) 0.3px, rgba(0, 0, 0, 0.1) 3px);
    background-size: 2px 2px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.slider-box{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.slider-catch{
	font-size: 3em;
	text-align: center;
	color: #ffffff;
}
.slider-catch_s{
	font-size:1.5em;
	text-align: center;
	color: #ffffff;
	padding:1em 0 0 0;
}
.slider-block {
	padding-top:6em;
}

/*visualオーバーレイ
---------------------------------------------------------------------------*/
.visual {
    margin-top:10rem;
}

.visual > div {
	position: relative;
	z-index: 10;
}

/*.visual-overlay {
	 position: absolute;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0, 0.7) 0.7px, rgba(0, 0, 0, 0.5) 0.7px);
    background-size: 2px 2px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.visual-overlay .catch h1, 
.visual-overlay .catch p { 
    color:#ffffff; 
}*/

/*ブロック
---------------------------------------------------------------------------*/
/*トップページブロック*/
.top-block{
	margin: 10em 0 0;
}

.top-block-bg{
	padding: 3em 0;
	margin-top: 10em!important;
	background-color:#f0f0f0;
}

/*サブページブロック*/
.sub-block{
	padding:6em 0 0 ;
}

/*キャッチコピー
---------------------------------------------------------------------------*/
/*トップページ キャッチコピー*/
.top-catch{
	font-size: 3em;
	text-align: center;
	color: #000000;
}
.top-catch_s{
	font-size:1.5em;
	text-align: center;
	color: #000000;
	padding:1em 0 0 0;
}

/*トップページ キャッチコピー ブロック*/
.top-catch-block{
	margin: 10em 0 0;
}

/*トップページ　お知らせ
---------------------------------------------------------------------------*/
.new dl {
	padding: 0;
	margin-bottom: 0.5em;
}
.new dt {
	/*float: left;*/
	/*width: 10em;*/
    color:#999999;
    font-size:0.9rem;
    padding-top: 0.5rem;
    line-height: 1.4rem;
}
.new dt::before{
	font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
	content: "\f017";
	color: #999999;
	padding-right:0.5em;
}
.new dd {
	/*padding-left: 10em;*/
}
.new dd.news-title{
	/*color:var(--base-color);*/
}

.new {
    display: flex;
    /*justify-content: space-between;*/
    /*margin-top: 0.5rem;*/
}

.new .left {
    flex:5;
    padding: 0 3em 0 0;
}

.new .right {
    flex:5;
}

/*トップページ　イメージ画像
---------------------------------------------------------------------------*/
.top-box > div > div {
	display:flex;
	padding-bottom:6em;
}
.top-box-img {
	flex:5;
	padding:0 3em 0 0;
}
.top-box-desc {
	flex:5;
    position: relative;
}
.top-box > div > div:last-child {
	padding-bottom:0;
}
.top-box > div > div:nth-child(odd) {
	flex-direction: row-reverse;
}
.top-box > div > div:nth-child(odd) .top-box-img {
	padding-right:0;
	padding:0 0 0 3em;
}

/*トップページ　ブロック2分割
---------------------------------------------------------------------------*/
/*.split-box {
	display:flex;
	justify-content:space-between;
}*/
/*.split-box-el {
	width:48%;
}*/
/*.split-box-el > div {
	padding-bottom:1em;
}*/

/*トップページ　バナー
---------------------------------------------------------------------------*/
.banner {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
}

.banner > div {
    margin:0 1rem 2rem;
    width:25%;
    border: 1px solid #d7d7d7;
}

/*outline
---------------------------------------------------------------------------*/
.outline h1 {
	font-size:1.6em;
}

.outline h2 {
	font-size:1.2em;
	border-bottom:1px solid #000000;
}

.outline p {
	padding-bottom:0.5em;
}

.outline {
    display: flex;
    /*justify-content: space-between;*/
    margin-top: 0.5rem;
}

.outline .left {
    flex:7;
    padding: 0 3em 0 0;
}

.outline .right {
    flex:3;
}

.outline p i {
    color: var(--base-color);
}

.outline-btn {
	/*display: flex;
	flex-flow: column;*/
	position: relative;
}

.outline-btn > p {
    margin-top:0.5rem;
}

/*service
---------------------------------------------------------------------------*/
.service h2 {
	padding-bottom:0.5em;
}

.service > div > div {
	padding-bottom:3em;
}

.service > div > div:last-child {
	padding-bottom:0em;
}

/*装飾ボタン
---------------------------------------------------------------------------*/
.m-button{
	text-align: center;
	padding:1em;
}
.m-button a{
	padding:1.2em 2em; 
	color:#ffffff; 
	background:var(--sub01-color);
	text-decoration: none;
}
.m-button a:hover{
	opacity: 0.8;
}

/*装飾ボタン　トップページサービスへのリンク
---------------------------------------------------------------------------*/
.top-box-service {
	position:relative;
}
.top-box-service-btn {
	position:absolute;
	bottom:1em;
}

/*装飾ボタン(矢印稼働)
---------------------------------------------------------------------------*/
.arrow-r-btn a{
	color:#ffffff; 
	background:var(--base-color);
	padding:1em 0.5em 1em 2em;
	vertical-align: middle;
}
.arrow-r-btn a i{
	padding: 0 1.2em 0 0.6em;
}
.arrow-r-btn a:hover{
	background-color:var(--sub02-color);
}
.arrow-r-btn a:hover i {
	transition: all 0.5s;
	transform: translateX(0.3em);
}

/*装飾ボタン(矢印稼働/フッター)
---------------------------------------------------------------------------*/
.footer-btn{
	margin:3.8em 0.5em 0;
}
.footer-btn a{
	color:#ffffff; 
	background:var(--base-color);
	padding:1em 0.5em 1em 2em;
	vertical-align: middle;
}
.footer-btn a i{
	padding: 0 1.2em 0 0.6em;
}
.footer-btn a:hover{
	background-color:var(--sub02-color);
}
.footer-btn a:hover i {
	transition: all 0.5s;
	transform: translateX(0.3em);
}

/*テーブル
---------------------------------------------------------------------------*/
/*cp_table-01設定*/
.cp_table-01 *, .cp_table-01 *:before, .cp_table-01 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table-01 {
	width: 100%;
	border-collapse: collapse;
	border-right: 1px solid #eeeeee;
}
.cp_table-01 thead th {
	padding: 0.5em 1em;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background: #eeeeee;
}
.cp_table-01 thead th:last-child {
	border-right: 1px solid #eeeeee;
}
.cp_table-01 tbody th {
	width:35%;
	padding: 0.5em 1em;
	vertical-align: middle;
	text-align: left;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background: #eeeeee;
	white-space: nowrap;
}
.cp_table-01 tbody tr:last-child th {
	border-bottom: 1px solid #eeeeee;
}
.cp_table-01 tbody td {
	width:calc((100% - 35%)/5);
	padding: 0.5em 1em;
	vertical-align: middle;
	text-align: center;
	border-bottom: 1px solid #eeeeee;
	border-left: 1px solid #eeeeee;
	background: #ffffff;
}

/*cp_table-02設定*/
.cp_table-02 *, .cp_table-02 *:before, .cp_table-02 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table-02 {
	width: 100%;
	border-collapse: collapse;
	border-right: 1px solid #eeeeee;
}
.cp_table-02 th, .cp_table-02  td {
	padding: 0.5em 1em;
	border: 1px solid #eeeeee;
}
.cp_table-02 th {
	width: 35%;
	text-align: left;
	border-right: 1px solid #eeeeee;
	border-bottom: 1px solid #ffffff;
	background: #eeeeee;
}
.cp_table-02 tr:last-child th {
	border-bottom: 1px solid #eeeeee;
}

/*cp_table-03設定*/
.cp_table-03 *, .cp_table-03 *:before, .cp_table-03 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table-03 {
	width: 100%;
	border-collapse: collapse;
	border-right: 1px solid #eeeeee;
}
.cp_table-03 thead th {
	padding: 0.5em 1em;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background: #eeeeee;
}
.cp_table-03 thead th:last-child {
	border-right: 1px solid #eeeeee;
}
.cp_table-03 tbody th {
	width:35%;
	padding: 0.5em 1em;
	vertical-align: middle;
	text-align: left;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background: #eeeeee;
	white-space: nowrap;
}
.cp_table-03 tbody tr:last-child th {
	border-bottom: 1px solid #eeeeee;
}
.cp_table-03 tbody td {
	padding: 0.5em 1em;
	vertical-align: middle;
	text-align: center;
	border-bottom: 1px solid #eeeeee;
	border-left: 1px solid #eeeeee;
	background: #ffffff;
}
.cp_table-03 tbody td:last-child {
	width:40%;
}

/*リスト
---------------------------------------------------------------------------*/
.caret-right-list ul {
	padding: 0.5em 1em 0em 1.5em;
	position: relative;
}
.caret-right-list ul li {
	list-style-type: none!important;
}
.caret-right-list ul li:before {
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	content: "\f0da";
	position: absolute;
	left : 0.5em;
	color: var(--base-color);
}

/*その他
---------------------------------------------------------------------------*/
.clear {clear: both;}


/*「企業情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/


/*.outline-btn > div {
    position: absolute;
    bottom: 0%;
    display: flex;
    width:100%;
    column-gap: 1rem;
}*/

/*.outline-btn > div div {
    width:calc((100% - 1rem)/2);
}*/

/*.outline-btn > div .map a {
    color: #ffffff;
    font-size:0.9rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--base-color);
    margin: auto;
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    text-decoration: none;
    padding: 0.5rem 3rem 0.5rem 1.5rem;
}*/

/*.outline-btn > div .recruit a {
    color: #ffffff;
    font-size:0.9rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--sub-color);
    margin: auto;
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    text-decoration: none;
    padding: 0.5rem 3rem 0.5rem 1.5rem;
}*/

/*.outline-btn > div a:hover {
    opacity: 1;
}*/

/*.outline-btn > div a:after {
    font-family: "FontAwesome";
    content: "\f101";
    position: absolute;
    right: 2rem;
}*/

/*.outline-btn > div a:hover:after {
    animation: fuwafuwa .5s linear infinite;
}*/

/*@keyframes fuwafuwa{
    0%{transform:translateX(0)}
    50%{transform:translateX(-5px)}
    100%{transform:translateX(0)}
}*/

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .outline > div {
        display: block;
    }
    
    .outline-btn > div {
        bottom: -20%;
    }
    
    .outline .left, .outline .right {
        width: 100%;
        margin-bottom:1rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .outline-btn > p {
        margin-top:0.3rem;
    }
}






/*画面幅1920px以上の設定
----------------------------------------------------------------------------------------------------*/
/*@media screen and (min-width:1920px){*/

/* 基本設定
---------------------------------------------------------------------------*/
/*.inner {
	width: calc(1920px - 8em);
	margin: 0 auto;
}*/

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*header {
	width: 1920px;
	left: calc((100% - 1920px)/2);
}*/

/*フッター
---------------------------------------------------------------------------*/
/*footer {
	width: 1920px;
	margin:0 auto;
}*/

/*メイン画像
---------------------------------------------------------------------------*/
/*トップページ メインイメージ*/
/*.hero {
	width: 1920px;
	margin:0 auto;
}*/
	
/*サブページ メインイメージ*/
/*.sub-hero {
	width: 1920px;
	margin:0 auto;
}*/
	
/*スライダー
---------------------------------------------------------------------------*/
/*.slider-block {
	width: 1920px;
	margin:0 auto;
}*/

/*ブロック
---------------------------------------------------------------------------*/
/*トップページブロック*/
/*.top-block{
	width: 1920px;
	margin:0 auto;
}*/

/*.top-block-bg{
	width: 1920px;
	margin:0 auto;
}*/

/*サブページブロック*/
/*.sub-block{
	width: 1920px;
	margin:0 auto;
}*/

/*}*/


/*画面幅1600px以下の設定
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1600px){

/* 基本設定
---------------------------------------------------------------------------*/
.inner {
	width: auto;
	margin: 0 5em;
}

}


/*画面幅960px以下の設定
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width:960px){

/* 基本設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;
	line-height: 2;
}

.inner {
	width: 80%;
	margin: 0 auto;
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像の設定*/
header #logo {
	width: 35%;
}

/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニュー表示切替*/
#menubar-s {
	display: block;
	position: absolute;
	top: 80px;
	left: 0px;
	width: 100%;
	z-index: 102;
	border-top: 1px solid #ffffff;
}
/*スマホ用メニューリンク*/
#menubar-s li {
	float: left;
	width: 50%;
	border-bottom: 1px solid #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#menubar-s li:nth-child(even)  {
	border-left: 1px solid #ffffff;
}
#menubar-s a {
	display: block;
	height: 50px;
	line-height: 50px;
	text-decoration: none;
	background: #000000;
	background: rgba(0,0,0,0.8);
	color: #ffffff;
	padding-left:20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*PC用メニュー非表示*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 15px;
	right: 10px;
	width: 30px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 12px 10px 5px;
    z-index: 101;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #ffffff;
	border-radius: 2px;
	margin-bottom: 7px;
}

/*スマホ用コンタクトボタン設定
---------------------------------------------------------------------------*/
/*スマホ用コンタクトボタン表示*/
#contact-btn {
	display: block;
	position: absolute;
	width: 50px;
	top: 15px;
	right: 10%;
    z-index: 101;
}

/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
ul.ddmenu {
	display: none;	/*ドロップダウンメニューブロック非表示*/
}

/*contents
---------------------------------------------------------------------------*/
.contents h2 {
	font-size:2.2em;
}

.contents h3 {
	font-size:1.2em;
}
	
/*フッター
---------------------------------------------------------------------------*/
footer img {
	width:140px!important;
	padding:0 0 0.2em;
}
	
/*メイン画像
---------------------------------------------------------------------------*/
/*トップページ メインイメージ*/

.hero-image {
	display:none;
}
    
.hero-image-responsive {
    display: block;
        
}
    
/*.hero {
	position:relative;
	height: 75vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(https://xs36haru.x-tc.jp/images/main-image-hero_01.jpg);
}*/
    
.hero-title{
	font-size:2.2em;	
}
	
/*サブページ メインイメージ*/	
.sub-hero {
	position:relative;
	height: 75vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(https://xs36haru.x-tc.jp/images/main-image-hero.jpg);
}
.sub-hero-title{
	font-size:2.2em;	
}
.sub-hero-title:before,
.sub-hero-title::after {
	display:none;
}
.sub-hero img {
	display:none;
}

/*スライダー
---------------------------------------------------------------------------*/
.infiniteslide1 img{
	width:585px;
}
.slider-catch{
	font-size: 2em;
}
.slider-catch_s{
	font-size:1.1em;
}
.slider-block {
	padding-top:3em;
}	

/*ブロック
---------------------------------------------------------------------------*/
/*トップページブロック*/
.top-block{
	padding: 3em 0 0;
}

.top-block-bg{
	padding: 1.5em 0;
	margin-top: 3em!important;
}

/*サブページブロック*/
.sub-block{
	padding:3em 0 0 ;
}	

/*キャッチコピー
---------------------------------------------------------------------------*/
/*トップページ キャッチコピー*/
.top-catch{
	font-size:2em;
}
.top-catch_s{
	font-size:1.1em;
}

/*トップページ キャッチコピー ブロック*/
.top-catch-block{
	padding: 3em 0 0;
}	

/*トップページ　お知らせ
---------------------------------------------------------------------------*/
.new dt {
	display:block;
	float:none;
	padding:0;
}
.new dd {
	display:block;
	float:none;
	padding:0;
}

/*トップページ　イメージ画像
---------------------------------------------------------------------------*/
.top-box > div > div {
	display:block;
	padding-bottom:2em;
}
.top-box-img {
	padding:0 0 1em!important;
}
.top-box > div > div:nth-child(odd) .top-box-img {
	padding:0 0 1em!important;
}	
	
/*トップページ　ブロック2分割
---------------------------------------------------------------------------*/
.split-box {
	display:block;
}
.split-box-el {
	width:100%;
}
	
/*outline
---------------------------------------------------------------------------*/
.outline h1 {
	font-size:1.4em;
}

.outline h2 {
	font-size:1.1em;
}

.outline p {
	padding-bottom:0.5em;
}
	
/*service
---------------------------------------------------------------------------*/
.service > div > div {
	padding-bottom:1.5em;
}	
	
/*装飾ボタン　トップページサービスへのリンク
---------------------------------------------------------------------------*/	
.top-box-service {
	position:static;
}
.top-box-service-btn {
	position:static;
	padding:2em 0 0;
	text-align: center;
}	
	
/*装飾ボタン(矢印稼働/フッター)
---------------------------------------------------------------------------*/
.footer-btn{
	margin:2em 0 0;
}	

/*テーブル
---------------------------------------------------------------------------*/
/*cp_table-01設定*/
.cp_table-01 thead {
	display: none;
}
.cp_table-01 tbody th {
	display: block;
	width:100%;
	border-right: 1px solid #eeeeee;
}
.cp_table-01 tbody td {
	display: block;
	width:100%;
	padding: 10px 5px;
	text-align:left;
}
.cp_table-01 tbody td::before {
	font-weight: bold;
	float: left;
	padding: 0 1em;
	content: attr(label);
}
.cp_table-01 tbody td p {
	padding: 0;
    margin: 0;
}

/*cp_table-02設定*/
.cp_table-02 {
	margin: 0;
}
.cp_table-02 th, .cp_table-02 td {
	width: 100%;
	display: block;
	border-top: none;
	border-right: none;
}
.cp_table-02 tr:first-child th {
	border-top: 1px solid #eeeeee;
}

/*cp_table-03設定*/
.cp_table-03 thead {
	display: none;
}
.cp_table-03 tbody th {
	display: block;
	width:100%;
	border-right: 1px solid #eeeeee;
}
.cp_table-03 tbody td {
	display: block;
	width:100%;
	padding: 10px 5px;
	text-align:left;
}
.cp_table-03 tbody td:last-child {
	width:100%;
}
.cp_table-03 tbody td::before {
	font-weight: bold;
	float: left;
	padding: 0 1em;
	content: attr(label);
}
.cp_table-03 tbody td p {
	padding: 0;
    margin: 0;
}

}


/*画面幅480px以下の設定
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
	
/* 基本設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	line-height: 1.8;
}

.inner {
	width: auto;
	margin: 0 1em;
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;	/*ヘッダーの高さ*/
}
	
/*ロゴ画像の設定*/
header #logo {
	width: 50%;
	line-height:70px;
}

/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューリンク*/
#menubar-s li {
	float: none;
	width: auto;
}
#menubar-s li:nth-child(even)  {
	border-left: none;
}

/*スマホ用コンタクトボタン設定
---------------------------------------------------------------------------*/
/*スマホ用コンタクトボタン表示*/
#contact-btn {
	width: 40px;
	right: 1em;
}

/*contents
---------------------------------------------------------------------------*/
.contents h2 {
	font-size:1.8em;
}

.contents h3 {
	font-size:1.2em;
}

/*フッター
---------------------------------------------------------------------------*/
footer img {
	width:120px!important;
	padding:0 0 0.2em;
}

/*メイン画像
---------------------------------------------------------------------------*/
/*トップページ メインイメージ*/
.hero-title{
	font-size:1.8em;	
}
	
/*サブページ メインイメージ*/	
.sub-hero-title{
	font-size:1.8em;	
}
	
/*スライダー
---------------------------------------------------------------------------*/
.infiniteslide1 img{
	width:420px;
}
.slider-catch{
	font-size: 1.6em;
}
.slider-catch_s span{
	display:block;
	line-height:1.6;	
}

/*キャッチコピー
---------------------------------------------------------------------------*/
/*トップページ キャッチコピー*/
.top-catch{
	font-size:1.6em;
}
	
/*outline
---------------------------------------------------------------------------*/
.outline h1 {
	font-size:1.4em;
}

.outline h2 {
	font-size:1.1em;
}

.outline p {
	padding-bottom:0.5em;
}

}

