@charset "UTF-8";
/* CSS Document */

/* ------------------------------
　　グローバルメニュー
------------------------------ */
.global-nav-link.is-cta {
  height: 60px;
  margin: 0 15px;
  padding: 0 35px;
  color: #555;
  background:#FFD100; 
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.global-nav-link.is-cta:hover {
  background: #FAE794 ;
}

.global-nav-link{
	padding: 15px 5px;
}

.header-item-nav {
    font-size: 16px;
}

/* ------------------------------
　　メインビジュアル
------------------------------ */
.main-visual-box::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}

.main-visual-catch {
    	font-size: 50px;
		text-shadow: 2px 2px 3px #333;
	}

.main-visual-bg {
    	height: 90vh;
	}


/*@media screen and (min-width: 768px){
	.main-visual-bg {
    	height: 0;
    	background-size: 110%;
    	min-height: 480px;
	}
}

*/
@media only screen and (max-width: 766px) {
     .main-visual-catch {
    	font-size: 28px;
		text-shadow: 2px 2px 3px #333;
	}
	
	.main-visual-bg {
    	height: 40vh;
    /*	background-size: 105%;
    	min-height: 200px;*/
	}
}

/* ------------------------------
　　メインビジュアル下のメッセージ
------------------------------ */

.section-horizontal-lead_p {
    margin: 0 0 1em 0;
    color: var(--color-gray90);
    font-weight: bold;
    line-height: 1.5;
    font-size: 25px;
	text-align: center;
}

@media screen and (min-width: 1024px){
	.section-horizontal-header-inner {
    	padding: 15px 0;
	}
	
	.section-horizontal-heading_p {
    	font-size: 46px;
    	text-align: center;
		margin-bottom: 10px;
	}
	
	.section-horizontal-text_p p {
    	font-size: 18px;
    	color: var(--color-gray90);
    	line-height: 1.7;
    	width: 85%;
    	margin: 0 auto;
	}
}

@media screen and (min-width: 768px){
	.section-horizontal-header-inner {
    	padding: 15px 0;
	}
	
	.section-horizontal-heading_p {
    	font-size: 38px;
    	text-align: center;
		margin-bottom: 10px;
	}
	
	.section-horizontal-text_p p {
    	font-size: 18px;
    	color: var(--color-gray90);
    	line-height: 1.7;
    	width: 85%;
    	margin: 0 auto;
	}
}

@media screen and (max-width: 766px){
	
	.section-horizontal-heading_p {
    	font-size: 27px;
    	text-align: center;
		margin-bottom: 5px;
		margin-top: 0;
	}

	.section-horizontal-lead_p {
    	margin: 0 0 1em 0;
    	color: var(--color-gray90);
    	font-weight: bold;
    	line-height: 1.5;
    	font-size: 20px;
		text-align: center;
	}
	
}


/* ------------------------------
　　トップページのNEWSなどの背景
------------------------------ */
.section.is-bg {
    background: #f1f2ea;
}


/* ------------------------------
　　ボタン
------------------------------ */
.button.is-bordered {
    color: var(--color-gray100);
    background: transparent;
    border: 1px solid #000000;
}

.button.is-bordered:hover {
    background: var(--color-gray40);
}

/* ------------------------------
　　CTA
------------------------------ */
.cta-round {
    background: #f1f2ea;
}

/* ------------------------------
　　slick slider(初期設定)
------------------------------ */
.slick01{
    width:700px;
    margin: 0 auto 100px auto;
}


.slick01 li{
	font-size: 18px;
	line-height: 1.5;
}

.slick01 img{
	width:100%;
   margin-bottom: 5px;
}


/*@media screen and (min-width: 768px){
	.slick-next {
    	right: -50px;
	}
	
	.slick-prev {
    	left: -50px;
	}
}*/

@media only screen and (max-width: 766px) {
      .slick01{
    	width:90%;
    	margin: 0 auto;
	}
	
	.slick01 li{
		font-size: 90%;
	}
}

/* ------------------------------
　　slick slider（複数画像を並列に見せる）
------------------------------ */
.slick02 {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}

@media only screen and (max-width: 766px) {
	.slick02 {
    	width:90%;
	}
}

.slick02 img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slick02 .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
	padding:0;
}


.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*UTSUWAの初期設定*/
.slick-prev:before, .slick-next:before {
    display: none;
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

@media only screen and (max-width: 766px) {
	.slick-dots button {
    	color: transparent;
    	outline: none;
    	width:8px !important;/*ドットボタンのサイズ*/
    	height:8px !important;/*ドットボタンのサイズ*/
    	display:block;
    	border-radius:50%;
    	background:#ccc;/*ドットボタンの色*/
	}
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/* ------------------------------
　　フッターのsns
------------------------------ */
.footer-sns {
    display: none;/*SNSは運用していないので*/
}

.footer-sns-group {
    display: none;/*SNSは運用していないので*/
}

/* ------------------------------
　　各ページタイトル部分（共通）
------------------------------ */
.page-title-wrapper {
    background: #f1efe5;
}

@media (min-width: 768px){
	.page-title-wrapper {
    	height: 150px;
    	margin: 0 0 40px 0;
	}
}


/* ------------------------------
　　組み込みJS(カスタマイズ)
------------------------------ */
.ui-widget {
    font-family: inherit !important;
    font-size: 1em;
}

.ui-accordion .ui-accordion-header {
    margin: 10px 0 0 0 !important;
}

.ui-accordion .ui-accordion-content {
    line-height: 1.7;
}

/* ------------------------------
　　カスタム ユニット
------------------------------ */
/*コラム01*/
.column01 {
    display: flex;
    justify-content: space-between;
}

.column01-img {
    width: 15%;
	padding: 0 10px;
}

.column01-img img {
    width: 100%;
	height: auto;
}

.column01-r-editor {
    width: 80%;
    margin-bottom: 50px;
	margin-left: 0;
}


@media only screen and (max-width: 766px) {
	.column01 {
    	display: block;
	}
	
	.column01-img {
    	width: 30%;
		height: auto;
		display: block;
		margin: 0 auto 20px auto;
	}
	
	.column01-r-editor {
    	width: 90%;
		height: auto;
		margin: 0 auto;
	}
}
