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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* 共通 */
.common__link {
	display: inline-block;
	font-size: 16px;
	font-family: montserrat;
	font-weight: 500;
	position: relative;
}

.common__link::before {
  content: "↑";
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border: 1px solid #333;
  border-radius: 14px;
  text-align: center;
  margin-right: 10px;
  margin-top: -3px;
  transition: .2s;
  transform: rotate(45deg);
}

.common__link:hover::before {
    border: 1px solid #efeb55;
    background-color: #efeb55;
}



/* slideshow */
.slideShow__item {
	animation-duration: 18s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: linear;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover!important;
	background-position: center center!important;
	border-radius: 80px 0 0 80px;
	overflow: hidden;
}

.slideShow__item--01 {
	background: url("/img/index/bg_slideShow_01.jpg");
	animation-name: slideShow01;
}

.slideShow__item--02 {
	background: url("/img/index/bg_slideShow_02.jpg");
	animation-name: slideShow02;
}
	
.slideShow__item--03 {
	background: url("/img/index/bg_slideShow_03.jpg");
	animation-name: slideShow03;
}

/* 1枚目 */
@keyframes slideShow01 {
	0% {opacity: 1;}
	28% {opacity: 1;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 1;}
}

/* 2枚目 */
@keyframes slideShow02 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 1;}
	61% {opacity: 1;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 0;}
}


/* 3枚目 */
@keyframes slideShow03 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 1;}
	94% {opacity: 1;}
	100% {opacity: 0;}
}



/* dot */
.dot__box {
	display: flex;
	justify-content: space-between;
	width: 50px;
	position: absolute;
	left: 60px;
	bottom: 30px;
}

.dot__item {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #FFF;
	animation-duration: 18s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: linear;
}

.dot__item--01 {
	animation-name: dot01;
}

.dot__item--02 {
	animation-name: dot02;
}

.dot__item--03 {
	animation-name: dot03;
}

/* 1つ目 */
@keyframes dot01 {
	0% {background-color: #333;}
	28% {background-color: #333;}
	29% {background-color: #FFF;}
	61% {background-color: #FFF;}
	62% {background-color: #FFF;}
	94% {background-color: #FFF;}
	95% {background-color: #333;}
	100% {background-color: #333;}
}

@keyframes dot02 {
	0% {background-color: #FFF;}
	28% {background-color: #FFF;}
	29% {background-color: #333;}
	61% {background-color: #333;}
	62% {background-color: #FFF;}
	94% {background-color: #FFF;}
	95% {background-color: #FFF;}
	100% {background-color: #FFF;}
}

@keyframes dot03 {
	0% {background-color: #FFF;}
	28% {background-color: #FFF;}
	29% {background-color: #FFF;}
	64% {background-color: #FFF;}
	65% {background-color: #333;}
	94% {background-color: #333;}
	95% {background-color: #FFF;}
	100% {background-color: #FFF;}
}



/* news */
.news {
	background-color: #FFF;
	padding: 30px 50px;
	margin: -80px 0 0 auto;
	width: 540px;
	border-radius: 50px 0 0 0;
}

.news__wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}

.news__h2 {
	font-weight: bold;
}

.news__link {
	text-decoration: underline;
	font-size: 16px;
}

.post__item {
	line-height: 2;
}

.post__h3,
.post__date {
	display: inline;
}

.post__date {
	margin-right: 20px;
}



/* message */
.message {
	padding-top: 120px;
	display: flex;
	justify-content: space-between;
}

.message__right {
	width: 48%;
	background-image: url("/img/index/bg_message.jpg");
	background-position: center center;
	background-size: cover;
	border-radius: 50px 0 0 50px;
}

.message__left {
	width: 48%;
}

.message__content {
	width: 100%;
	max-width: 550px;
	margin: 0 0 0 auto;
}

.message__h2 {
	font-size: 35px;
	font-weight: 600;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin-bottom: 35px;
}

.message__h3 {
	font-family: montserrat;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .2em;
	margin-bottom: 20px;
}

.messageH3__jp {
	font-size: 14px;
	margin-left: 10px;
}

.message__txt {
	max-width: 450px;
	margin-bottom: 15px;
}

.message__link {
	float: right;
}



/* aboutus */
.aboutus {
	padding-top: 180px;
}

.aboutus__wrapper {
	display: flex;
	flex-direction: row-reverse;
	background-image: url("/img/index/bg_aboutus.jpg");
	background-position: center left 0;
	border-radius: 50px 0 0 50px;
}

.aboutus__left {
	width: 53%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutus__right {
	width: 47%;
	padding: 50px 0 50px 100px;
	border-radius: 50px 0 0 50px;
	background-color: #FFF;
}

.aboutus__link {
	color: #FFF;
}

.aboutus__link::before {
	border: 1px solid #FFF;
}

.aboutus__link:hover::before {
	color: #000;
}

.aboutus__h3 {
	font-size: 35px;
	font-weight: 600;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin-bottom: 35px;
}



/* service */
.service {
	width: 100%;
	padding-top: 200px;
}

.service__img {
	width: 100%;
	height: 450px;
	position: relative;
	z-index: -1;
}

.serviceImg__box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}

.serviceImg__item {
	height: 100%;
	background-size: cover;
	background-position: cover;
	
}

.serviceImg__item--01 {
	border-radius: 0 50px 50px 0;
	width: 29.5%;
	background-image: url("/img/index/bg_service_01.jpg");
}

.serviceImg__item--02 {
	border-radius: 50px;
	width: 32.7%;
	background-image: url("/img/index/bg_service_02.jpg");
}

.serviceImg__item--03 {
	border-radius: 50px 0 0 50px;
	width: 29.5%;
	background-image: url("/img/index/bg_service_03.jpg");
}

.service__content {
	width: 56%;
	background-color: #FFF;
	padding: 30px 45px 45px 45px;
	border-radius: 0 50px 50px 0;
	margin-top: -100px;
	z-index: 100;
}

.service__h2 {
	text-align: left;
}

.service .h2__en {
	display: inline;
	margin-right: 15px;
}

.serviceContent__inner {
	display: flex;
	justify-content: space-between;
}

.serviceContentInner__left {
	width: calc(100% - 170px);
}

.serviceContentInner__right {
	width: 170px;
	text-align: right;
	position: relative;
}

.service__link {
	position: absolute;
	bottom: 0;
	right: 0;
}



/* profile */
.profile {
	padding-top: 140px;
	margin-bottom: 200px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.profile__right {
	width: 48%;
}

.profile__left {
	width: 48%;
	background-image: url("/img/index/bg_profile.jpg");
	background-position: center center;
	background-size: cover;
	border-radius: 0 50px 50px 0;
}

.profile__content {
	width: 100%;
	max-width: 550px;
	margin: 0 auto 0 0;
}

.profile__h2 {
	font-size: 35px;
	font-weight: 600;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin-bottom: 35px;
}

.profile__h3 {
	font-family: montserrat;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .2em;
	margin-bottom: 20px;
}

.profileH3__jp {
	font-size: 14px;
	margin-left: 10px;
}

.profile__txt {
	max-width: 450px;
	margin-bottom: 15px;
}

.profile__link {
	float: right;
}






/******************************************************

タブレットの設定 768px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* message */
.message__content {
	margin: 0 0 0 2.5%;
}

	
	
}

/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* 共通 */
.common__link {
	font-size: 14px;
}

.common__link::before {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 7px;
}
	
	
	
/* slideshow */
.slideShow__item {
	border-radius: 50px 0 0 50px;
}
	
.header__scroll {
	font-size: 13px;
	position: absolute;
	right: 20px;
	bottom: 50px;
}

.header__scroll::after {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 14px;
	margin-left: 7px;
}
	
	
	
/* dot */
.dot__box {
	display: flex;
	justify-content: space-between;
	width: 35px;
	position: absolute;
	left: 35px;
	bottom: 35px;
}

.dot__item {
	width: 7px;
	height: 7px;
}
	
	

/* news */
.news {
	padding: 20px 30px;
	margin: -30px 0 0 auto;
	width: 80%;
	border-radius: 30px 0 0 0;
	position: relative;
	z-index: 1010;
}
	
.news__wrapper {
	margin-bottom: 10px;	
}

.news__h2 {
	font-weight: bold;
}

.news__link {
	text-decoration: underline;
	font-size: 16px;
}

.post__date {
	margin-right: 15px;
}
	
	

/* message */
.message {
	padding-top: 60px;
	display: block;
}

.message__right {
	width: calc(100% - 20px);
	height: 200px;
	margin: 0 0 0 auto;
	background-image: url("/img/index/bg_message.jpg");
	background-position: center center;
	background-size: cover;
	border-radius: 30px 0 0 30px;
}

.message__left {
	width: calc(100% - 40px);
	margin: 0 auto 70px auto;
}

.message__content {
	width: 100%;
	max-width: 100%;
	margin: 0 0 0 auto;
}

.message__h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.message__h3 {
	font-family: montserrat;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .2em;
	margin-bottom: 10px;
}

.messageH3__jp {
	font-size: 14px;
	margin-left: 10px;
}

.message__txt {
	max-width: 100%;
	margin-bottom: 15px;
}



/* aboutus */
.aboutus {
	padding-top: 60px;
}

.aboutus__wrapper {
	display: block;
	background-image: none;
	border-radius: 0;
	width: 100%;
}

.aboutus__left {
	width: calc(100% - 20px);
	margin-left: 20px;
	margin-right: 0;
	height: 200px;
	background-image: url("/img/index/bg_aboutus.jpg");
	background-size: cover;
	background-position: center center;
	border-radius: 30px 0 0 30px;
}

.aboutus__right {
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 0;
	border-radius: 0;
	margin-bottom: 30px;
}

.aboutus__link {
	color: #FFF;
}

.aboutus__link::before {
	border: 1px solid #FFF;
}

.aboutus__link:hover::before {
	color: #000;
}

.aboutus__h3 {
	font-size: 20px;
	margin-bottom: 15px;
}
	
	
	
/* service */
.service {
	width: 100%;
	padding-top: 100px;
}

.service__img {
	width: 100%;
	height: 170px;
}


.serviceImg__item--01 {
	border-radius: 0 20px 20px 0;
}

.serviceImg__item--02 {
	border-radius: 20px;
}

.serviceImg__item--03 {
	border-radius: 20px 0 0 20px;
}

.service__content {
	width: 100%;
	background-color: #FFF;
	padding: 20px 25px 25px 25px;
	border-radius: 0 30px 30px 0;
	margin-top: -30px;
}

.service .h2__en {
	margin-right: 10px;
}
	
.serviceContent__inner {
	display: block;
}

.serviceContentInner__left {
	width: 100%;
	margin-bottom: 15px;
}

.serviceContentInner__right {
	width: 100%;
}

.service__link {
	position: static;
}



/* profile */
.profile {
	padding-top: 40px;
	margin-bottom: 100px;
	display: block;
}

.profile__left {
	width: calc(100% - 20px);
	height: 200px;
	margin: 0 20px 0 0;
	background-position: center center;
	background-size: cover;
	border-radius: 0 30px 30px 0;
}

.profile__right {
	width: calc(100% - 40px);
	margin: 0 auto 70px auto;
}

.profile__content {
	width: 100%;
	max-width: 100%;
	margin: 0 0 0 auto;
}

.profile__h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.profile__h3 {
	font-family: montserrat;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .2em;
	margin-bottom: 10px;
}

.profileH3__jp {
	font-size: 14px;
	margin-left: 10px;
}

.profile__txt {
	max-width: 100%;
	margin-bottom: 15px;
}

	
	
	
}