@charset "UTF-8";

/*common.cssに移動？　下層共通かも*/
/* MESSAGEの見だし*/
.title_nextsub {
	width: 100%;
}
.title_nextsub_inner {
	display: inline-block;
}
main > section:first-of-type > div:nth-of-type(2) h2.nextsub{
	font-size: 1.6rem;
	font-family: 'Corbel', Arial, sans-serif;
	font-style: italic;
}
					@media only screen and (max-width: 768px) {
						main > section:first-of-type > div:nth-of-type(2) h2.nextsub{
							font-size: 22px;
						}
						main > section:first-of-type > div:nth-of-type(2) h2 {
							margin-bottom: 2vw;
						}
					}
main > section:first-of-type p.title_nextsub-lead {
	font-size: 41px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.5;
	margin-top: -4px;
	color: #fff;
}

/*　ADVANCEBOXの見だし*/
main > section:nth-of-type(2) div:first-of-type .title_nextsub {
    width: 100%;
	display: flex;
	justify-content: flex-end;
}
main > section:nth-of-type(2) div:first-of-type .title_nextsub_inner {
	width: auto;
	display: inline-block;
}
main > section:nth-of-type(2) div.advantagebox h2.nextsub {
	margin-bottom: 2vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
	font-size: 1.2rem;
	font-family: 'Corbel', Arial, sans-serif;
	font-style: italic;
	color: #00A7FF;
	font-weight: 700;
	letter-spacing: -.01em;
}
main > section:nth-of-type(2) div:first-of-type p.title_nextsub-lead {
	font-size: 41px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.5;
	margin-top: -4px;
	color: #00A7FF;
}
						@media only screen and (max-width: 768px) {
							main > section:nth-of-type(2) div.advantagebox h2.nextsub{
								font-size: 22px;
							}
							main > section:nth-of-type(2) div:first-of-type .title_nextsub {
								width: 100%;
								display: flex;
								justify-content: flex-start;
							}
							main > section:nth-of-type(2) div:first-of-type p.title_nextsub-lead {
                margin-bottom: 20px;
								font-size: 36px;
                line-height: 1.4;
							}
						}
/*　TOP MESSAGEの見だし*/
main > section:nth-of-type(3) div:first-of-type .title_nextsub {
    width: 72vw;
	margin: 0 auto 40px;
}
main > section:nth-of-type(3) h2,
main > section:nth-of-type(3) div.topmessage:first-of-type {
	font-size: 1.6rem;
	font-family: 'Corbel', Arial, sans-serif;
	font-style: italic;
	color: #00A7FF;
	font-weight: 700;
	letter-spacing: -.01em;
}
main > section:nth-of-type(3) div:first-of-type p.title_nextsub-lead {
	font-size: 41px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.5;
	margin-top: -4px;
	color: #00A7FF;
  font-style: normal;
}
main > section:nth-of-type(3) div:first-of-type p.title_nextsub-lead .sp-only{
  display: none;
}

					@media only screen and (max-width: 768px) {
						main > section:first-of-type > div:nth-of-type(2) h2.title_nextsub {
							font-size: 1.8rem;
						}
						main > section:first-of-type p.title_nextsub-lead {
							font-size: 36px;
							line-height: 1.4;
						}
						main > section:nth-of-type(3) h2,
						main > section:nth-of-type(3) div.topmessage:first-of-type {
							font-size: 22px;
						}
						main > section:nth-of-type(3) div:first-of-type p.title_nextsub-lead {
							font-size: 36px;
						}
						main > section:nth-of-type(3) div:first-of-type p.title_nextsub-lead .sp-only{
              display: block;
            }
					}

/*aboutusのページ*/
.aboutus .messagebox {
	width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
/*MESSAGE*/
.aboutus .messagebox .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10%;
	margin-top: 6%;
}
.aboutus .messagebox .inner .text {
	width: 45%;
}
.aboutus .messagebox .inner .text p {
	font-size: 15px;
  font-weight: 300;
	margin-bottom: 1em;
	line-height: 2.1;
}
.aboutus .messagebox .inner .photo {
	width: 42%;
	position: relative;
	z-index: 1;
	margin-top: 6%;
}
.aboutus .messagebox .inner .photo::before {
	content: "";
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 100%;
	height: 100%;
	background-image: none;
	background: linear-gradient(135deg, #E3FFCD 0, #E3FFCD 40%, #8CFFE8 80%, #8CFFE8 100%);
	background-position: 0 0, 3px 3px;
	z-index: -1;
	border-radius: 16px;
}
.aboutus .messagebox .inner .photo img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}
@media only screen and (max-width: 768px) {
	.aboutus .messagebox .inner {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10%;
		margin-top: 4%;
	}
	.aboutus .messagebox .inner .text {
		width: 100%;
		padding-top: 5vh;
	}
	.aboutus .messagebox .inner .text p {
		margin-bottom: 1em;
    font-size: 16px;
		line-height: 1.9;
	}
	.aboutus .messagebox .inner .photo {
		width: 100%;
		position: relative;
		z-index: 1;
		margin-top: 6%;
	}
	.aboutus .messagebox .inner .photo::before {
		content: "";
		position: absolute;
		bottom: -30px;
		right: -30px;
		width: 100%;
		height: 100%;
		background-image: none;
		background: linear-gradient(135deg, #E3FFCD 0, #E3FFCD 40%, #8CFFE8 80%, #8CFFE8 100%);
		background-position: 0 0, 3px 3px;
		z-index: -1;
		border-radius: 16px;
	}
	.aboutus .messagebox .inner .photo img {
		max-width: 100%;
		height: auto;
		border-radius: 16px;
	}
}
/*OUR ADVANTAGE*/
.aboutus .advantagebox {
	width: 100%;
	color: #00A7FF;
}
.aboutus .advantagebox .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 6%;
}
.aboutus .advantagebox .inner .text {
	width: 45%;
	order: 2;
}
				@media only screen and (max-width: 768px) {
					.aboutus .advantagebox .inner .text {
						order: 1;
            display: flex;
            flex-direction: column;
					}
				}
.aboutus .advantagebox .inner .text p {
	font-size: 15px;
  font-weight: normal;
	margin-bottom: 1.5em;
	color: #00A7FF;
}
.aboutus .advantagebox .inner .text>p {
	color: #000;
  line-height: 2.1;
}
.aboutus .advantagebox .inner .text_photo {
	width: 100%;
	position: relative;
	z-index: 1;
	margin: 30px auto 48px;
}
.aboutus .advantagebox .inner .text_photo::before {
	content: "";
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 100%;
	height: 100%;
	background-image: none;
	background: linear-gradient(135deg, #E3FFCD 0, #E3FFCD 40%, #8CFFE8 80%, #8CFFE8 100%);
	background-position: 0 0, 3px 3px;
	z-index: -1;
	border-radius: 16px;
}
.aboutus .advantagebox .inner .text_photo img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	border: 1px solid #ddd;
}
.aboutus .advantagebox .sakaisoken {
	width: 100%;
	border: 1px solid #00A7FF;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 40px;
	padding: 20px;
	box-sizing: border-box;
}
.aboutus .advantagebox .sakaisoken .title {
	text-align: center;
	margin-bottom: .5em;
}
.aboutus .advantagebox .sakaisoken .title img {
	max-width: 62%;
	height: auto;
}
.aboutus .advantagebox .sakaisoken ul {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.aboutus .advantagebox .sakaisoken ul li {
	width: 50%;
	text-align: center;
	box-sizing: border-box;
	padding-top: 8px;
}
.aboutus .advantagebox .sakaisoken ul li:first-child,
.aboutus .advantagebox .sakaisoken ul li:nth-child(2) {
	border-bottom: 1px dashed #A1EBFD;
	padding-bottom: 8px;
}
.aboutus .advantagebox .sakaisoken ul li:nth-child(2n) {
	border-left: 1px dashed #A1EBFD;
}
.aboutus .advantagebox .sakaisoken ul li .category {
	position: relative;
	padding-bottom: .25em;
	margin-bottom: 0;
}
.aboutus .advantagebox .sakaisoken ul li .category::before {
	position: absolute;
	border-bottom: 2px solid #00A7FF;;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	content: '';
}
.aboutus .advantagebox .sakaisoken ul li .name {
	font-size: 17px;
	font-weight: 700;
  margin-top: 3px;
	margin-bottom: 0;
}
.aboutus .advantagebox .sakaisoken ul li .name span {
	display: block;
	font-size: .6rem;
	margin-top: -.15em;
  line-height: 1;
}
.aboutus .advantagebox .inner .photo {
	width: 40%;
	order: 1;
}
					@media only screen and (max-width: 768px) {
						.aboutus .advantagebox .inner .photo {
							order: 2;
						}
					}
.aboutus .advantagebox .inner .photo img {
	max-width: 100%;
	height: auto;
}
@media only screen and (max-width: 768px) {
	.aboutus .advantagebox {
		width: 100%;
		color: #00A7FF;
	}
	.aboutus .advantagebox .inner {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10%;
		margin-top: 4%;
	}
	.aboutus .advantagebox .inner .text {
		width: 100%;
	}
	.aboutus .advantagebox .inner .text p {
		font-size: 16px;
		margin-bottom: 0;
	}
	.aboutus .advantagebox .inner .text p span {
    font-size: 13px;
	}
	.aboutus .advantagebox .inner .text_photo {
		width: 100%;
		position: relative;
		z-index: 1;
		margin: 20px auto 48px;
	}
	.aboutus .advantagebox .inner .text_photo::before {
		content: "";
		position: absolute;
		bottom: -30px;
		right: -30px;
		width: 100%;
		height: 100%;
		background-image: none;
		background: linear-gradient(135deg, #E3FFCD 0, #E3FFCD 40%, #8CFFE8 80%, #8CFFE8 100%);
		background-position: 0 0, 3px 3px;
		z-index: -1;
		border-radius: 16px;
	}
	.aboutus .advantagebox .inner .text_photo img {
		max-width: 100%;
		height: auto;
		border-radius: 16px;
		border: 1px solid #ddd;
	}
	.aboutus .advantagebox .sakaisoken {
    order: 1;
		width: 100%;
		border: 1px solid #00A7FF;
		background: rgba(255, 255, 255, 0.6);
		border-radius: 16px;
		padding: 20px;
		box-sizing: border-box;
	}
	.aboutus .advantagebox .sakaisoken .title {
		text-align: center;
		margin-bottom: .5em;
	}
	.aboutus .advantagebox .sakaisoken .title img {
		max-width: 240px;
    width: 100%;
		height: auto;
	}
	.aboutus .advantagebox .sakaisoken ul {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.aboutus .advantagebox .sakaisoken ul li {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
		padding-top: 8px;
	}
	.aboutus .advantagebox .sakaisoken ul li:first-child,
	.aboutus .advantagebox .sakaisoken ul li:nth-child(2),
	.aboutus .advantagebox .sakaisoken ul li:nth-child(3) {
		border-bottom: 1px dashed #A1EBFD;
		padding-bottom: 8px;
	}
	.aboutus .advantagebox .sakaisoken ul li:nth-child(2n) {
		border-left: none;
	}
	.aboutus .advantagebox .sakaisoken ul li .category {
		position: relative;
		padding-bottom: .5em;
    line-height: 1;
	}
	.aboutus .advantagebox .sakaisoken ul li .category::before {
		position: absolute;
		border-bottom: 2px solid #00A7FF;;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 10px;
		content: '';
	}
	.aboutus .advantagebox .sakaisoken ul li .name {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 0;
		margin-top: .1em;
	}
	.aboutus .advantagebox .sakaisoken ul li .name span {
		display: block;
		font-size: 10px;
		margin-top: -.25em;
	}
	.aboutus .advantagebox .inner .photo {
		width: 100%;
		margin-top: 6%;
	}
	.aboutus .advantagebox .inner .photo img {
		max-width: 100%;
		height: auto;
	}
}

/*TOP MESSAGE*/
.aboutus .topmessage {
	width: 100%;
	color: #00A7FF;
	padding-top: 10vh;
}
.aboutus .topmessage .nextsub {
  margin-bottom: 20px;
}
.aboutus .topmessage .inner {
	width: 72vw;
	margin: 0 auto;
	padding: 6vh 0 2vh;
}
.aboutus .topmessage .inner .text {
	margin-bottom: .8em;
	padding-bottom: .4em;
	border-bottom: 2px dashed #B3BDBA;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
}
.aboutus .topmessage .inner .text:last-child,
.aboutus .topmessage .inner .text.bd-none {
	padding-bottom: 0;
	border-bottom: none;
}
.aboutus .topmessage .inner .text p {
	font-size: 15px;
	margin-bottom: 1em;
	color: #000;
  line-height: 2.1;
}
.aboutus .topmessage .president-name {
	margin-bottom: 40px;
	font-style: normal;
	font-weight: normal;
}
.aboutus .topmessage .president-name p{
	color: #000 !important;
	text-align: right;
	letter-spacing: 1px;
}
.aboutus .topmessage .president-name p span:first-child{
	padding-right: 20px;
	font-size: 18px;
}
.aboutus .topmessage .president-name p span:last-child{
	font-size: 25px;
}

@media only screen and (max-width: 768px) {

  .aboutus .topmessage .nextsub{
    margin-bottom: 10px;
  }

  .aboutus .topmessage .inner .text p {
    font-size: 16px;
    line-height: 2.1;
  }

	.aboutus .topmessage .president-name p{
		display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
	}
	.aboutus .topmessage .president-name{
		margin-bottom: 0;
	}
	.aboutus .topmessage .president-name p span:first-child{
		padding-right: 0;
		font-size: 16px;
	}
	.aboutus .topmessage .president-name p span:last-child{
		line-height: 1;
	}

}

h1.maintitle b {
font-weight: bold;
}
h1.maintitle b b {
opacity: 0;
display: inline-block;
}
h1.maintitle.aos-init.aos-animate b b {
animation: h1_anim 2s cubic-bezier(0,1.13,.52,.91) forwards;
}

@keyframes h1_anim {
0%{
opacity: 0;
}
100%{
opacity: 1;
transform: none;
}
}
h1.maintitle b b:nth-of-type(1) {
animation-delay: .1s !important;
transform: translateX(-1rem);
}
h1.maintitle b b:nth-of-type(2) {
animation-delay: .15s !important;
transform: translateX(-1.5rem);
}
h1.maintitle b b:nth-of-type(3) {
animation-delay: .2s !important;
transform: translateX(-2rem);
}
h1.maintitle b b:nth-of-type(4) {
animation-delay: .25s !important;
transform: translateX(-2.5rem);
}
h1.maintitle b b:nth-of-type(5) {
animation-delay: .3s !important;
transform: translateX(-3rem);
}
h1.maintitle b b:nth-of-type(6) {
animation-delay: .35s !important;
transform: translateX(-3.5rem);
}
h1.maintitle b b:nth-of-type(7) {
animation-delay: .4s !important;
transform: translateX(-4rem);
}
h1.maintitle b b:nth-of-type(8) {
animation-delay: .45s !important;
transform: translateX(-4.5rem);
}
h1.maintitle span {
opacity: 0;
transition: all .4s ease-in-out;
transition-delay: 1s;
}
h1.maintitle.aos-init.aos-animate span {
opacity: 1;
}
/* Message Parallax Section */
.messagebox_parallax {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.message_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.message_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.message_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  max-width: 1200px;
}

.message_text img {
  width: 100%;
  height: auto;
}

.message_figure {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 3;
  width: 40%;
  max-width: 600px;
}

.message_figure img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .message_text {
    width: 90%;
  }

  .message_figure {
    width: 60%;
    right: 0;
  }
}

/* Parallax Animation */
[data-parallax] {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.3, 1);
}

.president_section{
  position: relative;
  overflow: hidden;
  height: 450px;
  background-color: #fff;
  background: #fff url(../images/aboutus/bg_message.jpg) no-repeat center center;
  background-size: cover;
  z-index: 9999;
}
.president_section .president_wrapper{
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto !important;
}
.president_section .president_wrapper .president_text{
  max-width: 60vw;
  position: relative;
  transform: translateX(0);
  transition: transform 0.05s linear;
  will-change: transform;
  margin-left: 120px;
}

.president_section .president_wrapper .president_text img{
  width: auto;
  max-height: 500px;
  position: relative;
  top: -38px;
}
.president_section .president_wrapper .president_figure{
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 3;
  max-width: 450px;
  width: 50vw;
}
.president_section .president_wrapper .president_figure img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .president_section {
    height: 270px;
  }
  .president_section .president_wrapper .president_text {
    max-width: 60vw;
    margin-left: 34vw;
  }
  .president_section .president_wrapper .president_text img {
    max-height: 260px;
    top: 0;
  }
  .president_section .president_wrapper .president_figure {
    width: 100%;
    top: 10px;
    right: 4vw;
    max-width: inherit;
    text-align: right;
  }
  .president_section .president_wrapper .president_figure img{
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .president_section .president_wrapper .president_figure {
    right: -60px;
  }
}
