@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

h2 {
	font-size: 18px;
	font-weight: 600;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #435259;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
}

.parent {
    padding: 0 2vw;
}

.child {
    max-width: 1024px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #435259;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}

.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow-con01::before{
	left: 0px;
	width: 10px;
	height: 1px;
	background: #435259;
}

.arrow-con01::after{
	left: 6px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #435259;
	border-right: 1px solid #435259;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.arrow-con02::before{
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	border: 1px solid #435259;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.arrow-con02::after{
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-top: 2px solid #435259;
	border-right: 2px solid #435259;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.arrow-con04::before{
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.arrow-con04::after{
	top: 0%;
    left: 60%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: solid 1px #435259;
	padding-right: 5px;
	transition: 0.2s;
}

.title:hover {
	color: #2264b9;
}

.title span {
	margin-right: 8px;
	font-size: 20px;
}

.title p {
	font-weight: 600;
}

.title .arrow {
	margin-left: 8px;
}

.title:hover .arrow-con02::before {
	border: 1px solid #2264b9;
}

.title:hover .arrow-con02::after {
	border-top: 2px solid #2264b9;
	border-right: 2px solid #2264b9;
}

/*終わり*/


/*アニメーション*/
/*スクロールふわっと表示*/
.scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}
.scroll.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.8s;
}
/*終わり*/

/*js表示 一個ずつ出てくる*/
.scr-target {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
}
.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}
/*終わり*/

/*スクロールフェードイン*/
.js-fadeLeft {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-100px); /* 下に100pxの位置から */
    transition: opacity .5s, transform .5s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeLeft.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.5s; /* フェード開始を0.2秒遅らせる */
}

.js-fadeRight {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(100px); /* 下に100pxの位置から */
    transition: opacity .5s, transform .5s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeRight.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: .8s; /* フェード開始を0.2秒遅らせる */
}
/*終わり*/

/*カーテンを開くようなテキストアニメーション*/   
.visible {
    position: relative;
    overflow: hidden;
}

.visible::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 101%; /* 必要なら微調整する */
    height: 100%;
    background-color: #333;
    transform-origin: right top;/* アニメーションの軸となる座標 */
    transition: 1.0s;/* 1秒かけてアニメーションする */
    transition-delay: 0.3s;
    z-index: 2;
}

.effect.visible::before {
    transform: scale(0, 1);
}
/*終わり*/

/*終わり*/


/*<header class="header">*/
.header {
    padding: 2vh 2vw;
}

.header-inner {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    display: inline-block;
}

.header-logo img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.header-nav {
    display: flex;
    align-items: flex-end;
}

.nav-a {
    padding: 0 20px;
    margin: 0 4px;
}

.nav-a:hover {
    color: #14B88D;
}

.nav-left {
    display: flex;
    flex-direction: column;
}

.nav-left ul {
    justify-content: right;
}

.nav-left ul,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-small {
    font-size: 14px;
}

.nav-right li {
    border-left: solid 1px #333;
}

.nav-right a {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.tel-icon,
.map-icon {
    width: 22px;
}

/*ドロップダウンメニュー*/
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-a {
    position: relative;
    z-index: 5;
}

/*2階層目以降は横並びにしない*/
  
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
    position: relative;
}

.drop-con li {
    width: 100%;
    padding: 8px 8px 8px 16px;
}

.drop-con a {
    display: flex;
    justify-content: space-between;
}


.arrow-con03::after{
	left: 10px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #435259;
	border-right: 2px solid #435259;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.drop-con a:hover .arrow-con03::after {
	border-top: 2px solid #14b88d;
	border-right: 2px solid #14b88d;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
    display: block;
    text-decoration: none;
    transition:all .3s;
}
    
nav ul li a:hover{
    color: #14b88d; 
}
  
/*==矢印の設定*/  
/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width:6px;
    height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}
  
/*== 2・3階層目の共通設定 */
  
/*下の階層を持っているulの指定*/
.drop-con {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

nav li.has-child ul{
      /*絶対配置で位置を指定*/
    position: absolute;
    left:10px;
    top:0px;
    z-index: 4;
      /*形状を指定*/
    background-color: #fff;
    width:300px;
      /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
      /*アニメーション設定*/
    transition: all .3s;
    padding: 50px 0 30px 0;
}
  
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}
  
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
    border-bottom:solid 1px rgba(255,255,255,0.6);
}
  
nav li.has-child ul li:last-child a{
    border-bottom:none;
}
  
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
    color: #14B88D;
}
/*終わり*/

/*<div class="first-view">*/
.first-view {
	width: 100%;
	height: 650px;
    position: relative;
}

.first-view img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fv-txt {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
}

.fv-txt-in img {
    width: 99px;
    margin-bottom: 16px;
    display: inline-block;
}

.fv-txt-in h1 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    font-size: 60px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
}

.fv-txt-in h1 small {
    font-size: 16px;
    font-weight: 400;
    transform: rotate(-180deg);
}
/*終わり*/  

/*<footer class="footer">*/
.footer-in {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border-top: solid 1px #333;
    padding-top: 80px;
    padding-bottom: 56px;
}

.footer-logo {
    width: 17%;
}

.footer-txt {
    width: 60%;
    font-size: 14px;
}

.footer-txt p {
    margin-bottom: 8px;
}

.footer-txt a {
    border-bottom: solid 1px #333;
}

.footer-a {
    margin-top: 40px;
}

.footer-a .privacy,
.footer-a .site-map {
    margin: 8px 0;
    display: inline-block;
}

.footer-r {
    width: 17%;
}

.copyright {
    text-align: center;
    font-size: 12px;
    padding-bottom: 8px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .parent {
        padding: 0 5vw;
    }
/*終わり*/  
  
/*<header class="header">*/
    .header {
        padding: 2vh 5vw;
    }

    .header-inner {
        position: relative;
    }

    .header-site-menu {
        position: relative;
    }

    .header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .nav-left,
    .nav-right {
        display: block;
        width: 80%;
        text-align: left;
    }

    .nav-left a {
        padding: 1.5em 0;
        display: block;
    }

    .nav-right li {
        border-left: none;
    }  
    
    .nav-right a {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 1.5em 0 1.5em 8px;
    }

    .nav-right img {
        display: none;
    }    

    /*ハンバーガーボタン*/
    .hamburger {
        display : block;
        position: absolute;
        z-index : 60;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);      
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
        background-color: #14B88D;
        box-shadow: 0 0 2px #fff;
        border-radius: 4px;
    }

    .hamburger span {
        display : block;
        position: absolute;
        width   : 30px;
        height  : 3px ;
        left    : 6px;
        background : #fff;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition   : 0.5s ease-in-out;
        transition        : 0.5s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top : 20px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform   : rotate(315deg);
        transform        : rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 20px;
        -webkit-transform: rotate(-315deg);
        -moz-transform   : rotate(-315deg);
        transform        : rotate(-315deg);
    }

    .header-nav {
        position: fixed;
        z-index : 50;
        top  : 0;
        left : 0;
        color: #000;
        background: rgb(245,245,245);
        text-align: center;
        transform: translateY(-100%);
        transition: all 0.5s;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav ul {
        background: rgb(245,245,245);
        margin: 0 auto;
        display: block;
    }

    .header-nav ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
        margin: 0;
    }

    .header-nav ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .header-nav ul a:hover{
        color: #14B88D;
    }

    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
        transform: translateY(0%);
    }
/*終わり*/ 

    /*アコーディオンメニュー*/
    nav{
        padding: 0;
    }
    
    nav ul{
        display: block;
    }
    
    nav li.has-child ul,
    nav li.has-child ul ul{
        position: relative;
        left:0;
        top:0;
        width:100%;
        visibility:visible;/*JSで制御するため一旦表示*/
        opacity:1;/*JSで制御するため一旦表示*/
        display: none;/*JSのslidetoggleで表示させるため非表示に*/
        transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    }
    
    nav ul li a{
        border-bottom:1px solid #ccc;
    }

    nav li.has-child ul {
        padding: 0;
    }

    .drop-con a {
        display: flex;
        justify-content: space-between;
        padding-left: 8px;
        padding-right: 8px;
    }
  
  /*矢印の位置と向き*/
      /*2階層目を持つliの矢印の設定*/
    nav ul li.has-child::before{
        content:'';
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);    
        width:6px;
        height:6px;
        border-top: 2px solid #999;
        border-right:2px solid #999;
        transform: rotate(135deg);
    }

    nav ul li.has-child::before{
        content:'';
        position: absolute;
        top: 50%;
        left: calc(100% - 16px);
    }
    
    nav ul ul li.has-child::before{
        transform: rotate(135deg);
        left:20px;
    }
        
    nav ul li.has-child.active::before{
        transform: rotate(-45deg);
    }
/*終わり*/

/*<div class="first-view">*/
    .fv-txt {
        padding: 0 5vw;
    }
/*終わり*/

/*終わり*/ 

/*<footer class="footer">*/
    .footer-in {
        display: block;
    }

    .footer-logo {
        width: auto;
        margin-bottom: 40px;
    }

    .footer-txt {
        width: 100%;
        margin-bottom: 24px;
    }

    .footer-r {
        width: 100%;
    }
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/  

/*<header class="header">*/
    .header-logo {
        width: 60%;
    }

    .nav-left a {
        padding: 1.2em 0 1.2em 8px;
    }

    .drop-con a {
        font-size: 14px;
    }
/*終わり*/  

/*<div class="first-view">*/
    .fv-txt-in img {
        width: 83px;
    }

    .fv-txt-in h1 {
        font-size: 50px;
    }

    .fv-txt-in h1 small {
        font-size: 14px;
    }
/*終わり*/

/*<footer class="footer">*/
    .footer-in {
        padding-top: 40px;
    }

    .footer-logo {
        width: 60%;
    }

    .footer-txt {
        font-size: 12px;
    }

    .copyright {
        font-size: 10px;
    }
/*終わり*/  

}