@charset "utf-8";

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.spinner {
    margin: 10px auto 0;
    width: 70px;
    text-align: center;
    justify-content: space-between;
    display: flex;
}
.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
/*    background:linear-gradient(45deg, var(--main-color),var(--sub-color));*/
	background: var(--main-color);
    background-size: 200% 200%;
    animation: bggradient 20s ease infinite;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999999999999999999999999;
}
.loading-in {
	width: 100%;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading-in img {
    width: 150px;
}
.loading-text {
    text-align: center;
    color: #fff;
    font-size: 24px;
}


/**/

@keyframes home-anime1 {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  to {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

.home-title {
    margin-bottom: 50px;
	text-align: center;
}
.home-title h2 {
    color: var(--main-color);
	font-size: 30px;
    font-weight: 500;
    font-family: var(--font-mincho);
    letter-spacing: 0.1em;
}
.home-title p {
    color: var(--sub-color1);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-en1);
    margin-top: 10px;
    letter-spacing: 0.2em;
    line-height: 1;
}
.home-title.left {
	text-align: left;
}

.home-subtitle {
    color: var(--main-color);
	font-size: 24px;
    font-weight: 500;
    font-family: var(--font-mincho);
    margin-bottom: 30px;
	text-align: center;
}
.home-subtitle.left {
	text-align: left;
}
.home-subtitle span {
	font-size: 32px;
}

.home-text {
	font-size: 14px;
}

.home-bg {
	width: 100%;
	height: 526px;
	background: url("../img/home/home_fig.png") no-repeat center;
	background-size: cover;
	position: absolute;
	z-index: -2;
    -webkit-animation: home-anime1 10s linear 0s infinite normal;
    -moz-animation: home-anime1 10s linear 0s infinite normal;
    animation: home-anime1 10s linear 0s infinite normal;
}


@media (max-width: 815px) {
	
	.loading-text {
		font-size: 17px;
	}

	.home-title {
		margin-bottom: 30px;
	}
	.home-title h2 {
		font-size: 20px;
	}
	.home-subtitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.home-text {
		font-size: 12px;
	}
	.home-bg {
		height: 300px;
	}
}



/* -----------------
main-fv
-----------------------*/
#main-fv {
	background: var(--main-color);
	position: relative;
}
.main-fv-slide .slick-slide {
	padding: 5px;
	width: 400px;
	background: var(--main-color);
}
.main-fv-catch {
	color: #fff;
	width: 100%;
	padding: 0 20px;
	position: absolute;
	left: 0;
	bottom: 50px;
	z-index: 1;
}
.main-fv-catch__list >li {
	font-size: 26px;
	font-family: var(--font-mincho);
	padding-left: 30px;
	position: relative;
	margin-bottom: 20px;
}
.main-fv-catch__list >li:before {
    content: '';
    color: var(--sub-color1);
    width: 10px;
    height: 20px;
    border-right: solid 3px;
    border-bottom: solid 3px;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 7px;
}
.main-fv-catch-name {
	font-size: 90px;
	font-family: var(--font-en1);
	white-space: nowrap;
	line-height: 1;
	margin-top: 50px;
}
.main-fv-catch-text {
	font-size: 20px;
	margin-top: 10px;
}



@media (max-width: 815px) {

	#main-fv {
		padding: 2px 0;
	}
	.main-fv-slide .slick-slide {
		width: 250px;
		padding: 2px;
	}

	.main-fv-catch {
		bottom: 20px;
	}
	.main-fv-catch__list >li {
		font-size: 13px;
		padding-left: 20px;
		margin-bottom: 10px;
	}
	.main-fv-catch__list >li:before {
		width: 5px;
		height: 12px;
		top: 1px;
	}
	.main-fv-catch-name {
		font-size: 60px;
		white-space: normal;
	}
	.main-fv-catch-text {
		font-size: 14px;
		margin-top: 0;
	}

}

/* ----------------
business
--------------------------*/
#business .img {
	display: flex;
    justify-content: space-between;
	padding-bottom: 0;
}
#business .img img {
    max-width: 50%;
}

/* ----------------
intro
--------------------------*/
#intro {
	background: url("../img/home/expense-deduction_bg.jpg") no-repeat center;
	background-size: cover;
}
.intro-text h2 {
	color: var(--main-color);
	font-size: 32px;
	font-family: var(--font-mincho);
	font-weight: 500;
	margin-bottom: 40px;
}
.intro-text h3 {
    font-size: 20px;
    font-family: var(--font-mincho);
    font-weight: 500;
    margin: 50px 0 30px;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
}
.intro-check__list >li {
    font-size: 18px;
    font-family: var(--font-mincho);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
	margin-left: 10px;
}
.intro-check__list >li:before {
    content: '';
    color: var(--sub-color1);
    width: 6px;
    height: 14px;
    border-right: solid 3px;
    border-bottom: solid 3px;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 4px;
}
.intro-text .home-text:not(:last-of-type){
	margin-bottom: 20px;
}

.intro-nav {
	color: #fff;
    margin-top: 30px;
}
.intro-nav__list {
    display: flex;
    justify-content: space-between;
}
.intro-nav__list >li {
    text-align: center;
    padding: 20px 10px;
    min-height: 180px;
    border: solid 1px;
    background: rgba(4, 79, 71, 0.75);
    width: 48%;
    height: 100%;
}
.intro-nav__list >li:last-child {
	margin-bottom: 0;
}
.intro-nav__list >li h3 {
	font-size: 22px;
	font-family: var(--font-mincho);
	font-weight: 500;
	line-height: 1.4;
	min-height: 2em;
}
.intro-nav__list >li .more {
    margin-top: 30px;
}

@media (max-width: 815px) {

	#intro {
		padding: 20px 0;
	}
	.intro-in {
		display: block;
	}
	.intro-text {
		width: 100%;
		margin-bottom: 30px;
	}
	.intro-text h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.intro-text h3 {
		font-size: 16px;
		line-height: 1.6;
	}
	.intro-nav {
		width: 100%;
	}
	.intro-nav__list {
		display: block;
	}
	.intro-nav__list >li {
		min-height: 100%;
		width: 100%;
		height: 100%;
		margin: 0 0 20px;
	}
	.intro-nav__list >li h3 {
		font-size: 18px;
		min-height: auto;
	}
	.intro-nav__list >li .more {
		margin-top: 20px;
	}
	.intro-check__list >li {
		font-size: 16px;
	}
	.intro-check__list >li:before {
		top: 2px;
	}

}

/* ----------------
information
--------------------------*/
.information-in {
    display: flex;
    justify-content: space-between;
}
.information-news {
    width: 50%;
    padding: 3% 5%;
}
.information-open {
    width: 50%;
	padding: 3% 5%;
    position: relative;
}
.information-open:after {
	content: '';
	width: 50vw;
	height: 100%;
	border-radius: 10px 0 0 10px;
	background: #f5f5f5;
	position: absolute;
	left: 0;
	top:0;
	z-index: -1;
}



@media (max-width: 815px) {

	.information-in {
		display: block;
	}
	.information-news {
		width: auto;
		padding: 0;
		margin-bottom: 50px;
	}
	.information-open {
		padding: 30px 20px;
		background: #f5f5f5;
        width: calc(100% + 40px);
        margin-left: -20px;
	}
	.information-open:after {
		display: none;
	}

}


/* ----------------
message
--------------------------*/
.message-in {
    display: flex;
    justify-content: space-between;
}
.message-img {
    width: 35%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.message-img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.message-img:hover img {
	opacity: 0;
}
.message-text {
    width: 60%;
	padding-top: 260px;
}
.message-text .incho-name {
	font-size: 20px;
	font-family: var(--font-mincho);
	text-align: right;
	margin-top: 40px;
}
.message-text .incho-name span {
	font-size: 120%;
	margin-left: 10px;
}
.message-text-img {
    position: absolute;
}
.message-text-img.img01 {
    width: 23%;
    max-width: 200px;
    top: -5%;
    right: 40%;
}
.message-text-img.img02 {
    width: 44%;
    max-width: 378px;
    top: 15%;
    right: 0;
}


@media (max-width: 815px) {

	.message-in {
		display: block;
	}
	.message-img {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.message-text {
		width: 100%;
		padding-top: 0;
	}
	.message-text-img {
		display: none;
	}
	.message-text .incho-name {
		font-size: 16px;
		margin-top: 20px;
	}

}



/* ----------------
about
--------------------------*/
#about .home-bg {
	top: -100px;
}
.about-main {
    max-width: 874px;
	padding: 50px;
    margin: 100px auto;
    position: relative;
	background: url("../img/home/expense-deduction_bg.jpg") no-repeat center;
	background-size: cover;
}
.about-main .home-title h2,
.about-main .home-title p {
}
.about-main .home-subtitle {
}
.about-main-img {
	position: absolute;
    z-index: -1;
}
.about-main-img.img01 {
    width: 44%;
    max-width: 380px;
    top: -35%;
    left: -20%;
}
.about-main-img.img02 {
    width: 23%;
    max-width: 200px;
    top: -15%;
    right: -20%;
}


.about-lp__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-lp__list >li {
    width: 24%;
}
.about-lp__list >li a {
    display: block;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    height: 100%;
}
.about-lp__list .img img {
    width: 100%;
}
.about-lp__list .title {
    font-family: var(--font-mincho);
    padding: 0 20px;
}
.about-lp__list .title h3 {
    font-size: 18px;
    font-weight: 400;
}
.about-lp__list .title h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    min-height: 3em;
}
.about-lp__list .btn {
	color: var(--base-color);
	background: #fff;
	font-size: 16px;
	padding: 10px;
	margin: 20px 10px;
}
.about-lp__list .btn:after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(45deg);
	margin-left: 10px;
	vertical-align: 1px;
}

.about-lp__list >li.lp01 a {
	background: #073d48;
}
.about-lp__list >li.lp02 a {
	background: #1a6351;
}
.about-lp__list >li.lp03 a {
	background: #4b7b2f;
}
.about-lp__list >li.lp04 a {
	background: #8ca500;
}




@media (max-width: 815px) {

	.about-main {
		padding: 30px 20px;
	}
	.about-main-img {
		display: none;
	}
	.about-lp__list {
		justify-content: normal;
	}
	.about-lp__list >li {
		width: 48%;
		margin: 0 0 4% 4%;
	}
	.about-lp__list >li:nth-child(2n+1) {
		margin-left: 0;
	}
	.about-lp__list .title h3 {
		font-size: 14px;
	}
	.about-lp__list .title h4 {
		font-size: 17px;
		min-height: auto;
	}
	.about-lp__list .btn {
		font-size: 14px;
	}

}

@media (max-width: 640px) {

    .about-lp__list {
        display: block;
    }
    .about-lp__list >li {
        width: 100%;
        margin: 0 0 20px;
    }
	.about-lp__list >li a {
		height: auto;
		padding-bottom: 1px;
	}

}

/* ----------------
feature
--------------------------*/

.feature__list >li {
	display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
    height: 100vh;
    background: #fff;
    position: relative;
}
.feature__list >li .img {
    overflow: hidden;
    width: 50vw;
    height: 100vh;
    position: absolute;
    left: 50%;
    top: 0;
}
.feature__list >li .img .img-bg {
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* transform: translateX(-50%); */
    position: absolute;
    left: 0;
    top: 0;
}
.feature__list >li .img img {
	display:none;
}
.feature__list >li .info {
    width: 45%;
}
.feature__list >li .info h3 {
	font-size: 22px;
	font-weight: 500;
	font-family: var(--font-mincho);
	color: var(--main-color);
	margin-bottom: 30px;
}
.feature__list >li .info h3 span {
	font-size: 50px;
}
.feature__list >li .info h4 {
}
.feature__list >li .info p {
}



@media (max-width: 815px) {

	.feature__list >li {
		display: block;
		height: auto;
		margin-bottom: 50px;
	}
	.feature__list >li .img,
	.feature__list >li .img .img-bg {
		width: 100%;
		height: auto;
		background: none;
		position: relative;
		left: auto;
	}
	.feature__list >li .img img {
		display: block;
	}
	.feature__list >li .info {
		width: 100%;
		margin-bottom: 50px;
	}
	.feature__list >li .info h3 {
		font-size: 17px;
	}
	.feature__list >li .info h3 span {
		font-size: 32px;
	}

}



/* ----------------
treatment
--------------------------*/
#treatment {
	padding-bottom: 230px;
}
#treatment .home-bg {
    bottom: 0;
}
.treatment-box-wrap {
    display: flex;
    justify-content: space-between;
}
.treatment-box {
    width: 33.3333333%;
    padding: 20px 2% 50px;
    border-left: solid 1px var(--main-color);
}
.treatment-box:first-of-type {
	border-left: none;
}
.treatment-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 157px;
    margin-bottom: 40px;
}
.treatment-box h3 {
	color: var(--main-color);
	font-size: 30px;
	font-weight: 500;
	font-family: var(--font-mincho);
	text-align: center;
}
.treatment-box h4 {
	color: var(--main-color);
	font-size: 22px;
	font-weight: 500;
	font-family: var(--font-mincho);
	text-align: center;
}
.treatment-box__list {
	margin-top: 30px;
}
.treatment-box__list >li {
	margin-bottom: 20px;
}
.treatment-box__list >li a {
	color:var(--base-color);
}
.treatment-box__list >li a span {
	display:block;
}
.treatment-box__list >li a .desc {
	font-size: 14px;
}
.treatment-box__list >li a .title {
	font-size: 26px;
	font-family: var(--font-mincho);
	padding-left: 30px;
	position: relative;
}
.treatment-box__list >li a .title i {
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 10px;
}
.treatment-box__list >li a .title i:after {
	content: '';
	width: 6px;
	height: 6px;
	color: #fff;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(45deg);
	position: absolute;
    left: 5px;
    top: 7px;
}


@media (max-width: 815px) {

	.treatment-box-wrap {
		display: block;
		width: calc(100% + 40px);
		margin-left: -20px;
		padding: 20px;
		background: #f5f5f5;
	}
	.treatment-box {
		background: #fff;
		width: 100%;
		padding: 20px;
		margin-bottom: 20px;
		border: none;
		border-radius: 10px;
	}
	.treatment-box .icon {
		display: block;
		height: auto;
		margin: 0 auto 30px;
		width: 80px;
		text-align: center;
	}
	.treatment-box h3 {
		font-size: 20px;
	}
	.treatment-box h4 {
		font-size: 16px;
	}
	.treatment-box__list {
		margin-top: 30px;
	}
	.treatment-box__list >li {
		margin: 0 0 20px;
	}
	.treatment-box__list >li a .desc {
		font-size: 12px;
	}
	.treatment-box__list >li a .title {
		font-size: 20px;
		margin-top: 5px;
	}
	.treatment-box__list >li a .title i {
		top: 6px;
	}
}






/* ----------------
expense-deduction
--------------------------*/
#expense-deduction {
	padding: 50px 0;
	background: url("../img/home/expense-deduction_bg.jpg") no-repeat center;
	background-size: cover;
}
.expense-deduction-in {
    width: 50%;
}

.expense-deduction-img {
    position: absolute;
}
.expense-deduction-img.img01 {
    max-width: 569px;
    width: 44%;
    right: 3%;
    top: -25%;
}
.expense-deduction-img.img02 {
    max-width: 383px;
    width: 31%;
    right: 0;
    bottom: -20%;
    z-index: 1;
}



@media (max-width: 815px) {

	.expense-deduction-in {
		width: auto;
	}
	.expense-deduction-img-wrap {
		text-align: right;
		margin-top: 50px;
		position: relative;
	}
	.expense-deduction-img.img01 {
		width: 70%;
		right: auto;
		top: auto;
		position: relative;
	}
	.expense-deduction-img.img02 {
		width: 40%;
		right: auto;
		left: 0;
		bottom: -20%;
	}
}

/* ----------------
first-time
--------------------------*/
.first-time__list {
    display: flex;
    justify-content: space-between;
}
.first-time__list >li {
	width: 33.33333333333%;
	padding: 0 2% 50px;
	border-left: solid 1px;
}
.first-time__list >li:first-child {
	border-left: none;
}
.first-time__list >li .img {
	text-align: center;
	margin-bottom: 20px;
}
.first-time__list >li .info h4 {
    color: var(--main-color);
	font-size: 22px;
    font-weight: 500;
    font-family: var(--font-mincho);
	text-align: center;
	line-height: 1.5;
}
.first-time__list >li .info p {
	margin-top: 20px;
}

@media (max-width: 815px) {

	.first-time__list {
		display: block;
	}
	.first-time__list >li {
		width: 100%;
		padding: 0 0 30px;
		margin-bottom: 30px;
		border-bottom: dotted 1px;
		border-left: none;
	}
	.first-time__list >li:last-child {
		padding: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	.first-time__list >li .info h4 {
		font-size: 18px;
	}

}

/* ----------------
reserve
--------------------------*/
#reserve {
	color: #fff;
	background: url("../img/home/intro_bg2.jpg") no-repeat center;
	background-size: cover;
}
#reserve h2 {
	color: var(--sub-color3);
	font-size: 34px;
	font-weight: 500;
    font-family: var(--font-mincho);
	text-align: center;
	margin-bottom: 30px;
}
#reserve .home-subtitle {
    color: #fff;
}
.reserve-btns {
    display: flex;
    justify-content: space-between;
}
.reserve-btn {
    width: 48%;
}
.reserve-btn a {
    color: #fff;
    display: block;
    text-align: center;
    font-size: 26px;
    font-family: var(--font-mincho);
    letter-spacing: 0.1em;
    border: solid 1px;
    border-radius: 10000px;
    background: var(--main-color);
    padding: 40px 0;
}
.reserve-btn.-web a:after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(45deg);
	margin-left: 30px;
}
.reserve-btn a i {
	display: inline-block;
    vertical-align: -9px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 20px;
}
.reserve-btn.-web a i {
	width: 35px;
	height: 37px;
	background-image: url("../img/home/icon_reserve_web.png");
}
.reserve-btn.-tel a i {
	width: 31px;
	height: 32px;
	background-image: url("../img/home/icon_reserve_tel.png");
}




@media (max-width: 815px) {

	#reserve h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.reserve-btns {
		display: block;
	}
	.reserve-btn {
		width: 100%;
		margin: 10px 0;
	}
	.reserve-btn a {
		font-size: 18px;
		border-radius: 10px;
		padding: 20px 0;
	}
	.reserve-btn.-web a i {
		width: 26px;
		height: 28px;
	}
	.reserve-btn.-tel a i {
		width: 25px;
		height: 26px;
	}

}

/* ----------------
office
--------------------------*/
#office h2 {
    font-size: 90px;
    font-weight: 500;
    font-family: var(--font-en1);
    color: var(--main-color);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.07em;
    margin: 0 20px;
}
.office-img__list {
    display: flex;
    justify-content: space-between;
}
.office-img__list >li {
    width: 30%;
}


@media (max-width: 815px) {

	#office h2 {
		font-size: 30px;
		margin: 0 10px 10px;
	}

}

/* ----------------
recruit
--------------------------*/
.recruit-in {
	display: flex;
	color: #fff;
	background: var(--main-color);
}
.recruit-in .info {
	width: calc(100% - 392px);
	padding: 5%;
}
.recruit-in .info .home-title h2,
.recruit-in .info .home-title p {
	color: #fff;
}
.recruit-in .img {
	width: 392px;
	background: url("../img/home/recruit_bnr.jpg") no-repeat center;
	background-size: cover;
}

@media (max-width: 815px) {

	.recruit-in {
		display: block;
	}
	.recruit-in .info {
		width:100%;
		padding: 30px 20px;
	}
	.recruit-in .img {
		display:none;
	}

}