@charset "UTF-8";
/* CSS Document */
/*for seo*/
/*
body>div>header>h1{
	width:120px;
	height:40px;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:url(../images/logo.png) no-repeat;
	background-size:100%;
}
*/
/*
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
-webkit-font-smoothing: antialiased;
*/
/*
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100-900;
  font-style: normal;
  font-family: "Red Hat Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300-700;
  font-style: normal;
*/

#iphone_nav {
    display: block;
}
/************/
/*common*/
/************/
* {
    box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    font-size: 10px;
}

body {
    width: 100%;
    height: 100vh;
    min-height: 481px;
    background-color: #efefef;
    color: #000;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
}

/* header */
header.header-top {
    width: 100%;
    height: 8rem;
}

header.header-top>div {
    position: relative;
    width: 90vw;
    min-width: 480px;
    margin: 0 auto;
    z-index: 20;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

h1#toplogo {
    width:15rem;
    height: 8rem;
    padding: 2.4rem 0;
}
h1#toplogo>a {
    display: block;
    width:15rem;
	height:4.2rem;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:url("../images/nav_logo.svg") no-repeat;
	background-size:100%;
}

nav#g_nav {
    width: 85%;
    margin: 0 0 0 auto;
    display: none;
}

nav#g_nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height:4rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: normal;
}

nav#g_nav ul li {
    margin-left: 3rem;
}

nav#g_nav li>a {
    display: block;
    height: 1.3rem;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

nav#g_nav li>a:hover {
    color: #003686;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

nav#g_nav li>a::after {
    content: "";
    display: block;
    width: 0;
    transition: width 0.3s;
    border-bottom: 1px solid #003686;
    margin-top: 1rem;
}

nav#g_nav li>a:hover::after {
    width: 100%;
}

nav#g_nav li.g_nav_tel>p {
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.6rem;
    font-weight: 500;
    font-style: normal;
}

nav#g_nav li>a>span.en {
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
}

/* main */
section#main {
    width: 100%;
    height: 100vh;
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -8rem;
    border-bottom: 6px solid #003686;
}

.main_bg {
    position: absolute;
    inset: 0;
    background: url("../images/main.jpg") no-repeat center;
    background-size: cover;
}

.main_content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.main_content>div {
}

.main_content>div>h2 {
    font-optical-sizing: auto;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 500;
    font-style: normal;
    letter-spacing: .8rem;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.main_content>div>p {
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    font-style: normal;
    letter-spacing: .2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.main_content>div>h3 {
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    font-weight: 500;
    font-style: normal;
    letter-spacing: .2rem;
    text-align: center;
    margin-bottom: 5rem;
}

.main_content nav {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 16rem;
}

.main_content nav a {
    width: 16rem;
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.main_content nav a:hover {
    width: 16rem;
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #003686;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: none;
    padding: 12px 18px;
    border: 1px solid #fff;
    border-radius: 1rem;
    background-color: rgba(255,255,255,0.45);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

/* section common */
.bon-section {
    padding: 8rem 0;
}

.bon-section>div {
    width: 80vw;
    margin: 0 auto;
}

/* section concept */
#concept>div>div {
    margin-bottom: 8rem;
}

#concept>div>div>h2 {
    width:100%;
    font-size: 2.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

#concept>div>div>h2>span {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

#concept>div>div>p {
    width:100%;
    color: #003686;
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.3rem;
    text-align: center;
    margin-bottom: 1rem;
}

#concept>div>div>h3 {
    width:100%;
    color: #003686;
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.3rem;
    text-align: center;
    margin-bottom: 5rem;
}

#concept>div>div>div>p {
    width: 80vw;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: 0.2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
    align-items: stretch;
}

.cards>article>header {
    position: relative;
    z-index: 30;
}

.cards>article>header>h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.3rem;
    text-align: center;
}

.cards>article>header>p {
    width: 20rem;
    margin: 0 auto;
    color: #003686;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    background-color: #fff;   
}

.cards>article>header>p.cards_con {
    width: 15rem;
    margin: 0 auto;
    background-color: #efefef;   
}

.cards>article>header>p.cards_out {
    width: 10rem;
    margin: 0 auto;
    background-color: #efefef;   
}

.cards>article>header>p.cards_ssw {
    width: 5rem;
    margin: 0 auto;
    background-color: #efefef;   
}

.cards>article>p {
    position: relative;
    margin-top: -0.5rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top:3px solid #003686;
    line-height: 1.5;
    z-index: 20;
}

.cards>article>a {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.cards>article>a:hover {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

#concept>div>a {
    display: block;
    width: 100%;
    max-width:60rem;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

#concept>div>a:hover {
    display: block;
    max-width:80rem;
    min-width: 60rem;
    margin: 0 auto;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

/* section consultation */
#sec_01 {
    width: 100%;
    background: #003686 no-repeat;
}

#sec_01>div>div>h2 {
    width:100%;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

#sec_01>div>div>h2>span {
    display: block;
    text-align: center;
}

#sec_01>div>div {
    margin-bottom: 0rem;
}

#sec_01>div>div>p {
    width:100%;
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.3rem;
    text-align: center;
    margin-bottom: 5rem;
}

.consult {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.consult>div:nth-child(1) {
    width: 100%;
}

.consult>div:nth-child(2)  {
    width: 100%;
}

.consult>div>h3 {
    margin-bottom: 3rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
}

.consult>div>p {
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.1rem;
}

.consult>div>h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.1rem;
}

.consult>div>a {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto 2rem 0;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.consult>div>a:hover {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto 2rem 0;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

/* aside */
.handshake {
    height: 30vw;
    background:url("../images/sec_01_footer.jpg") no-repeat center;
    background-size: cover;
}

/* contact */
#contact {
    padding: 8rem 0 0 0;
    border-bottom: 1px #efefef solid;
}

#contact>div {
    width: 80vw;
    margin: 0 auto;
    padding-bottom: 5rem;
    border-bottom: 1px #000 solid;
}

#contact>div>header>h2 {
    position: relative;
    z-index: 30;
    width: 18rem;
    background-color: #efefef;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: normal;
}

#contact>div>header>span {
    display: block;
    position: relative;
    z-index: 20;
    width: 100%;
    height: 1px;
    border-top: 1px #000 solid;
    margin-top: -1.4rem;
}

#contact>div>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 5rem;
}

#contact>div>div>div:nth-child(1) {
    width: 100%;
    margin-bottom: 5rem;
}

#contact>div>div>div:nth-child(2) {
    width: 100%;
}

#contact>div>div>div>p {
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
}

#contact>div>div>div>h3 {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 1rem;
}

#contact>div>div>div:nth-child(2)>p {
    height: 2.4rem;
    overflow: hidden;
    color: #003686;
    font-size: 2.4rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    margin-bottom: 5rem;
}

#contact>div>div>div:nth-child(2)>a {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto 0 0;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

#contact>div>div>div:nth-child(2)>a:hover {
    display: block;
    width: 15rem;
    height: 4rem;
    margin: 0 auto 0 0;
    padding-top: 1.2rem;
    background-color: #549b35;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

/* footer */
footer.footer {
    padding: 5rem 0 0 0 ;
}

footer.footer>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80vw;
    margin: 0 auto;
}

footer.footer>div>div:nth-child(1) {
    width: 100%;
}

footer.footer>div>div:nth-child(2) {
    width: 100%;
    margin-top: 3rem;
}

footer.footer>div>div>h2 {
    display: block;
    width:15rem;
	height:4.2rem;
    margin-bottom: 3rem;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:url("../images/footer_logo.svg") no-repeat;
	background-size:100%;
}

footer.footer>div>div>h3 {
    margin-bottom: 1rem;
}

footer.footer>div>div>address {
    line-height: 1.5;
    letter-spacing: 0.5;
}

footer.footer>div>div>nav>ul {
    display: flex;
    flex-direction: column;
    gap:1rem;
    margin-top: 3rem;
}

footer.footer>div>div>nav>ul>li>a {
    color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}


footer.footer>div>div>nav>ul>li>a:hover {
    color: #003686;
    text-decoration: underline;
    text-underline-offset:0.5rem;
    text-decoration-color: #003686;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

footer.footer>div>div:nth-child(2) h4{
    width:fit-content;
    border: 1px #000 solid;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

footer.footer>div>div:nth-child(2) ul{
    line-height: 1.5;
}

footer.footer>aside {
    width: 80vw;
    margin: 0 auto;
}

footer.footer>aside>div.footer_link {
    width: 25rem;
    margin: 5rem auto 5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    align-items:center  ;
}

footer.footer>aside>div.footer_link a {
    display: flex;
    width: 25rem;
    height: 8rem;
    align-items:center;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

footer.footer>aside>div.footer_link a:hover {
    display: flex;
    width: 25rem;
    height: 8rem;
    align-items:center;
    text-align: center;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

footer.footer>aside>div.footer_link img {
    display: block;
    margin: 0 auto;
}

footer.footer>aside>div.footer_link a:first-child {
    background-color: #3e3a39;
    background-repeat: no-repeat;
}

footer.footer>aside>div.footer_link a:first-child img {
    height: 8rem;
}

footer.footer>aside>div.footer_link a:nth-child(2) {
    background-color: #1c033d;
    background-repeat: no-repeat;
}

footer.footer>aside>div.footer_link a:nth-child(2) img {
    height: 8rem;
}

footer.footer>aside>div.footer_link a:nth-child(3) {
    background-color: #fff;
    background-repeat: no-repeat;
}

footer.footer>aside>div.footer_link a:nth-child(3) img {
    height: 8rem;
}

footer.footer>p {
    width: 100%;
    height: 6rem;
    background-color: #3e3a39;
    display: flex;
    align-items: center;
}

footer.footer>p>span {
    display: block;
    width: fit-contet;
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin: 0 auto;
}

#top #hide_header {
    width: 100%;
	height: 8rem;
	background-color: #fff;
	position: fixed;
	top: -8rem;
	left: 0;
	z-index: 501;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	/*display: flex;*/
	justify-content: space-between;
    display: none;
}

#sub #hide_header {
    width: 100%;
	height: 8rem;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 501;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	display: flex;
	justify-content: space-between;
}

#hide_header>div {
    position: relative;
    width: 90vw;
    min-width: 480px;
    margin: 0 auto;
    z-index: 20;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

h1#hide_logo {
    width:15rem;
    height: 8rem;
    padding: 2.4rem 0;
}
h1#hide_logo>a {
    display: block;
    width:15rem;
	height:4.2rem;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:url("../images/footer_logo.svg") no-repeat;
	background-size:100%;
}

nav#hide_nav {
    width: 85%;
    margin: 0 0 0 auto;
    display: none;
}

nav#hide_nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 4rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: normal;
}

nav#hide_nav ul li {
    margin-left: 3rem;
}

nav#hide_nav li>a {
    display: block;
    height: 1.3rem;
    color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

nav#hide_nav li>a:hover {
    color: #003686;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    -webkit-font-smoothing: antialiased;
}

nav#hide_nav li>a::after {
    content: "";
    display: block;
    width: 0;
    transition: width 0.3s;
    border-bottom: 1px solid #003686;
    margin-top: 1rem;
}

nav#hide_nav li>a:hover::after {
    width: 100%;
}

nav#hide_nav li.g_nav_tel>p {
    color: #003686;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.6rem;
    font-weight: 500;
    font-style: normal;
}

nav#hide_nav li>a>span.en {
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
}


/******************/
/*sub common start*/
/******************/
div.sub>header {
    padding-top: 8rem;
    background-color: #000;
}

div.sub>header>div {
    width: 100%;
    height: 25rem;
    padding-top: 10rem;
}

div.sub>header>div>h1 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.51rem;
}

div.sub>header>div>p {
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}

div.sub>article {
    width: 80vw;
    margin: 0 auto;
    padding: 8rem 0;
}

div.sub>article>h2 {
    margin-bottom: 5rem;
    font-size: 2.8rem;
    font-weight: 3500;
    font-style: normal;
    line-height: 1.5;
    text-align: center;
}

div.sub>article>p {
    width: 60vw;
    margin: 0 auto 5rem auto;
    line-height: 1.5;
}

div.sub:first-child>article {
    background: url("../images/gray_logo.svg") no-repeat center;
    background-position: top 4rem center;
    background-size: 8rem;
}

div.sub>article>h3 {
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 3500;
    font-style: normal;
    text-align: center;
}

div.sub>article>h4 {
    margin-bottom: 5rem;
    color: #003686;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}

div.sub>article>div>header>h2 {
    position: relative;
    z-index: 30;
    width: 9rem;
    background-color: #efefef;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: normal;
}

div.sub>article>div>header>span {
    display: block;
    position: relative;
    z-index: 20;
    width: 100%;
    height: 1px;
    border-top: 1px #000 solid;
    margin-top: -1.4rem;
}

div.flow {
    position: relative;
}

div.flow>p {
    font-size: 1.8rem;
    margin-top: 5rem;
    margin-bottom: 3rem;
}

div.flow>div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

div.flow>div>p {
    display: block;
    position: relative;
    width: 100%;
    background-color: #fff;
    opacity: 0.7;
    border: 1px solid #595757;
    border-radius: 2.5rem;
    height: 5rem;
    font-size: 1.4rem;
    padding: 1.6rem 2rem 2rem 4rem;
    margin: 2rem 0;
}

div.flow>div>div {
    display: flex;
    position: relative;
    width: 90%;
    align-items: center;
}

div.flow>div>p>span.en {
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    align-items: center;
    margin-right: 2rem;
    margin-top: -1rem;
}

div.flow>div>p>span.bl {
    display: block;
    position: absolute;
    top: 1rem;
    left: 2rem;
    width: 0.3rem;
    height: 3rem;
    background-color: #003686;
}

div.bo {
    position: absolute;
    width: 1rem;
    height: 56rem;
    background-color: #9fa0a0;
    top: 10rem;
    right: 5vw;
    border-radius: 0.5rem; 
    z-index: -5;
}

div.flow>div>div>p {
    line-height: 1.8;
}




/******************/
/*contract start*/
/******************/

div.sub:nth-child(2) {
    background-color: #d8e2e3;
}

div.sub>article>div>table {
    width: 100%;
}

div.sub>article>div>table th {
    padding: 0.5rem;
    font-size: 1rem;
}


div.sub>article>div>table td {
    padding: 0.5rem;
    font-size: 1rem;
}

div.sub>article>div>table thead {
    background-color: #000;
    color: #fff;
}

div.sub>article>div>table tbody {
    background-color: #fff;
}

header>div.con {
    background: url("../images/con_01.jpg") no-repeat center;
    background-size: cover;
}

article>div.con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

article>div.con>img {
    display: block;
}

/******************/
/*outsoursing start*/
/******************/
div.sub:nth-child(2) {
    background-color: #d8e2e3;
}

header>div.out {
    background: url("../images/out_01.jpg") no-repeat center;
    background-size: cover;
}

article>div.out {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

article>div.out>img {
    display: block;
}



/*margin*/
.paper {
    width: 80vw;
    margin: 2rem auto;
    padding: 0;
    background: none;
}

.paper .main-title {
    margin: 2rem 0 1.5rem;
    font-size: 1.8rem;
}

.paper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.paper th, .paper td {
    border: 1px solid #000;
    padding: 1rem;
    vertical-align: middle;
    background-color: #fff;
    line-height: 1.5;
    font-size: 1.0rem;
}

.paper th {
    font-weight: normal;
    text-align: center;
}

.paper .result-table td {
    text-align: center;
}

.paper .section {
  margin-bottom: 3rem;
}

.paper .section-title {
    font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.paper .section-text {
  line-height: 1.8;
}

.paper .list {
  margin-left: 1rem;
}

.paper .agreement-table th {
  text-align: left;
  width: 65%;
}
/*margin end*/

/******************/
/*ssw start*/
/******************/
div.sub:nth-child(2).ssw {
    background-color: #003686;
}

header>div.ssw {
    background: url("../images/ssw_01.jpg") no-repeat center;
    background-size: cover;
}

article>div.ssw {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

article>div.ssw>img {
    display: block;
}

div.sub:nth-child(2).ssw>article {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.sub:nth-child(2).ssw>article>div {
    width:100%;
    margin-bottom: 3rem;
}

div.sub:nth-child(2).ssw>article>div:nth-child(2) {
    width:100%;
    margin-bottom: 0rem;
}

div.sub:nth-child(2).ssw>article>div>h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3rem;
}

div.sub:nth-child(2).ssw>article>div>p {
    color: #fff;
    line-height: 1.5;
}


/******************/
/*company start*/
/******************/
.sub.company>section:first-child {
    padding-top: 16rem;
    width: 80vw;
    margin: 0 auto;
    padding-bottom:8rem;
    border-bottom: 1px #000 solid;
}

.sub.company>section {
    padding-top: 8rem;
    width: 80vw;
    margin: 0 auto;
}

/* 見出し */
.sub.company>section>header>h2 {
    position: relative;
    z-index: 30;
    width: 14rem;
    background-color: #efefef;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: normal;
}

.sub.company>section>header>span {
    display: block;
    position: relative;
    z-index: 20;
    width: 100%;
    height: 1px;
    border-top: 1px #000 solid;
    margin-top: -1.4rem;
}
.sub.company>section>h2 {
  font-size: 1.8rem;
  font-weight: normal;
    margin-top: 5rem;
  margin-bottom: 3rem;
}

.sub.company>section:nth-child(2)>h2 {
  font-size: 1.8rem;
  font-weight: normal;
    margin-top: 0rem;
  margin-bottom: 3rem;
}

/* 会社概要 */
.company-list {
  display: grid;
  grid-template-columns: 10rem 1fr;
  row-gap: 2rem;
  column-gap: 4rem;
  font-size: 1.3rem;
  line-height: 1.8;
}

.company-list dt {
  font-weight: normal;
}

.company-list dd {
  margin: 0;
}

/* 沿革 */
.history-list {
  display: grid;
  grid-template-columns: 10rem 1fr;
  row-gap: 2rem;
  column-gap: 4rem;
  font-size: 1.3rem;
}

.history-list dt {
  white-space: nowrap;
}

.history-list dd {
  margin: 0;
}

section.history>img {
    display: block;
    margin: 3rem auto 0 auto;
}

/* ギャラリー */
.sub.company>section:nth-child(3) {
   padding-top: 3rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery .box {
  background: #dcdcdc;
  aspect-ratio: 4 / 3;
}

/******************/
/*privacy start*/
/******************/
.sub.privacy>section:first-child {
    padding-top: 16rem;
    width: 80vw;
    margin: 0 auto;
    padding-bottom:8rem;
}

.sub.privacy>section {
    padding-top: 8rem;
    width: 80vw;
    margin: 0 auto;
    line-height: 1.5;
}

.sub.privacy>section>header {
    margin-bottom: 5rem;
}

.sub.privacy>section>header>h2 {
    position: relative;
    z-index: 30;
    width: 25rem;
    background-color: #efefef;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 500;
    font-style: normal;
}

.sub.privacy>section>header>span {
    display: block;
    position: relative;
    z-index: 20;
    width: 100%;
    height: 1px;
    border-top: 1px #000 solid;
    margin-top: -1.4rem;
}

.sub.privacy>section>h2 {
  font-size: 1.8rem;
  font-weight: normal;
    margin-top: 3rem;
  margin-bottom: 1rem;
}

.sub.privacy>section footer {
    margin-top: 5rem;
}

.sub.privacy>section footer p {
    background-color: none;
}

/******************/
/*compliance start*/
/******************/
.sub.compliance>section:first-child {
    padding-top: 16rem;
    width: 80vw;
    margin: 0 auto;
    padding-bottom:8rem;
}

.sub.compliance>section {
    padding-top: 8rem;
    width: 80vw;
    margin: 0 auto;
    line-height: 1.5;
}

.sub.compliance>section>header {
    margin-bottom: 5rem;
}

.sub.compliance>section>header>h2 {
    position: relative;
    z-index: 30;
    width: 17rem;
    background-color: #efefef;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 500;
    font-style: normal;
}

.sub.compliance>section>header>span {
    display: block;
    position: relative;
    z-index: 20;
    width: 100%;
    height: 1px;
    border-top: 1px #000 solid;
    margin-top: -1.4rem;
}

.sub.compliance>section>h2 {
  font-size: 1.8rem;
  font-weight: normal;
    margin-top: 3rem;
  margin-bottom: 1rem;
}

.sub.compliance>section footer {
    margin-top: 5rem;
}

.sub.compliance>section footer p {
    background-color: none;
}


/******************/
/*contact start*/
/******************/
/*リセット */
input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

section.contact {
	width: 100%;
	margin: auto;
	padding: 160px 5% 100px 5%;
}

section.contact>header {
	width: 100%;
	text-align: center;
	animation: fadeineffect 2s ease .5s 1 normal both; /* 0.5秒後に2秒かけてフェードインします */	
}

section.contact>header>h1{
	color: #000;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 3rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}

section.contact>header>h1>span{
	display: block;
	font-size: 1.3rem;
	margin-top: 13px;
    text-align: center;
}

section.contact>div {
	width: 100%;
	margin: 10rem auto 0 auto;
	animation: fadeineffect 2s ease 1.5s 1 normal both; /* 1.5秒後に2秒かけてフェードインします */	
}

.contact_cell{
	display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact_cell-top{
	width: 180px;
	display: grid;
	align-content:center;
}

.contact_cell-top p{
	line-height: 1;
	width: 200px;
}

.contact_cell-top p:nth-child(1){
	font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: normal;
    text-align: left;
	padding-bottom: 0.2rem;
}

.contact_cell-top p:nth-child(2){
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
	margin-top: 0.5rem;
}

.contact_cell-top p span.required{
	color: #E60012;
	padding-left: 5px;
}

.contact_cell-bottom{
	width: calc( 100% - 250px );
    padding-top: 3rem;
}

.contact_cell input[type="text"]{
	background: #F7F8F8;
	height: 54px;
	width: 100%;
	border: none;
	box-sizing: border-box;
	margin-top: 0px;
	padding: 0 20px;
	font-size: 1.6rem;
}

.contact_cell-bottom>p {
    height: 54px;
	width: 100%;
	border: none;
	box-sizing: border-box;
	margin-top: 0px;
	padding: 0 20px;
	font-size: 1.6rem;
}

.contact_cell-bottom-flex{
	display: grid;
	grid-template-columns: calc( 45% - 10px ) calc( 45% - 10px );
	gap:20px;
}

.contact_cell-bottom-flex{
	grid-template-columns: calc( 38% - 20px ) calc( 38% - 20px );
	gap:40px;
}

.contact_cell-bottom>div>select{
	border: none;
	background: none;
	width: 100%;
	height: 100%;
	padding: 0 60px 0 20px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	color: #333333;
	font-size: 16px;
}

.contact_cell-bottom.short{
	width: calc( 80% - 250px );
}

.contact_cell-bottom.middle{
	width: calc( 100% - 250px );
}

.contact_cell-bottom.long{
	background: #F7F8F8;
	margin-top: 0px;
	padding: 10px;
	width: calc( 100% - 250px );
	align-items: center;
	justify-content: flex-start;
	display: flex;
	box-sizing: border-box;
}

.contact_cell-bottom textarea{
	background: #F7F8F8;
	padding: 10px;
	width: 100%;
	height: 160px;
	border: none;
	resize: vertical;
	 -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font: inherit;
}



/*
.contact_cell-bottom p{
	font-size: 1.3rem;
	font-weight: normal;
}
.contact_cell-bottom.long-1{
	background: #F7F8F8;
	margin-top: 0;
	padding: 10px;
}
.contact_cell-bottom.long-1{
	width: calc( 80% - 250px );
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 10px 0;
	margin-top: 0;
	box-sizing: border-box;
}*/














.contact_cell-checkbox{
	display: flex;
    justify-content: flex-start;
	align-items: center;
}

.contact_cell-checkbox:nth-child(1){
	margin-left: 0;
}

.contact_cell-checkbox p{
	padding-left: 4px;
}

.contact_cell-privacy{
	border: 1px solid #231815;
	padding: 20px;
	margin-top: 10px;
	background: #F7F8F8;
	font-weight: normal;
	height: 10rem;
	overflow: scroll;
}

.contact_cell.privacy{
	margin-top: 60px;
}

.contact_cell-privacy{
	width: calc( 100% - 250px );
	margin-left: 180px;
	margin-top: -10px;
}

.contact_cell-privacy p {
	font-size: 1.3rem;
	font-weight: normal;
	font-family: 'SourceHanSansJP-normal';
	line-height: 1.7;
}

.contact_cell input[type="radio"],.contact_cell input[type="checkbox"]{
	margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 27px;
	height: 27px;
}

/* チェックボックスデザイン */
.contact_cell input[type="radio"],.contact_cell input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;/*label手前にチェックボックス用の余白を開ける*/
    position: relative;
}

.contact_cell input[type="radio"]:before,.contact_cell input[type="radio"]:after{
	content: "";
    display: block; 
    position: absolute;
}

.contact_cell input[type="checkbox"]:before,.contact_cell input[type="checkbox"]:after{
	content: "";
    display: block; 
    position: absolute;
}

.contact_cell.circle input[type="radio"]::before {
    border-radius: 50%;
    border:1px solid #666464;
	border-spacing: 5px 1rem;
    width:24px;/*チェックボックスの横幅*/
    height: 24px;/*チェックボックスの縦幅*/
    transform: translateY(-50%);
    top: 14px;
    left: 0;
  }

.contact_cell.circle input[type="radio"]::after {
	width:16px;/*チェックボックスの横幅*/
    height: 16px;/*チェックボックスの縦幅*/
    top: 5px;/*チェック時の位置調整*/
    left: 4px;/*チェック時の位置調整*/
	border-radius: 50%;
	border:1px solid #666464;
  }

.contact_cell.circle input[type="radio"]:checked::after {
	background: #000000;
}

.contact_cell.square input[type="checkbox"]::before {
    border-radius: 0;
    border:1px solid #666464;
	border-spacing: 5px 1rem;
    width:24px;
    height: 24px;
    transform: translateY(-50%);
    top: 14px;
    left: 0;
  }

.contact_cell.square input[type="checkbox"]::after {
	width:24px;
    height: 24px;
	background: #000000;
    opacity: 0.01;
    top: 2px;
    left: 1px;
	border-radius:0;
	content:"\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
  }

.contact_cell.square input[type="checkbox"]:checked::after {
	opacity: 1;
}








.select_box-select{
	height: 54px;
	background: #F7F8F8;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	width: 90%;
}

.select_box-select{
	width: 100%;
}

.select_box-select{
	margin-top: 10px;
}

.select_box-select option {
  color: #333333;
}

.select_box-select:before{
	position: absolute;
	content: "▼";
	right: 0;
	height: 54px;
	width: 54px;
	background: #DCDDDD;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.contact-btn-area input{
	display: flex;
    align-items: center;
	width: fit-content;
	height: 60px;
	margin: 10rem auto 0 auto;
	padding: 0 24px;
	border: 1px solid #000000;
	border-radius: 30px;
    background-color: #ffffff;
	color: #000000;
    font-size: 1.6rem;
	line-height: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	-webkit-font-smoothing: antialiased;
}

.contact-btn-area input:nth-child(2){
    margin: 3rem auto 0 auto;
}

.contact-btn-area input:hover {
	background-color: #000000;
	color: #ffffff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	-webkit-font-smoothing: antialiased;
	cursor:pointer;
}

.contact-btn-area input[type="submit"]{
	appearance: none;
  	-webkit-appearance: none;
	background-color: none;
}

.complete {
    width: 80vw;
    margin: 0 auto;
}

.complete h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 5rem;
}

.complete p {
    width: 60vw;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.error_messe {
    margin-bottom: 2rem;
}


/*
.check_box-check{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 20px;
	gap:40px;
}

.check_box-check.square{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 20px;
	gap:25px;
}

input[value] {
	background-color: none;
}


/****** チェックボックスデザイン　setting end ******/

/*
.contact_cell:first-child{
	margin-top: 40px;
}
.contact_cell{
	box-sizing: border-box;
	
}
.contact-area-001-01{
	text-align: center;
	margin-bottom: 40px;
}
.contact-area-001{
	padding: 150px 5% 70px 5%;
	right: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
}*/

/*/////////////   ここまで   ///////////////////
//　コンタクトページ
////////////////////////////////////////////*/

/*/////////////////////////////////////////////
//　サンクスページ
///////////////   ここから   /////////////////*/ 

.thanks-area-001{
	margin: 60px 0;
	text-align: center;
}

.thanks-area-001-01 p{
	font-size: 1.3rem;
	font-weight: normal;
	font-family: 'SourceHanSansJP-normal';
	line-height: 1.7;
}

.thanks-area-001-01 p:nth-child(1){
	font-size: 3rem;
	margin-bottom: 40px;
	font-family: 'Brother-1816-Bold';
}

.thanks-area-001-02{
	margin-top:5rem;
}

.thanks-area-001-02 p{
	font-size: 1.3rem;
	font-weight: normal;
	font-family: 'SourceHanSansJP-normal';
	line-height: 1.7;
}

/*/////////////   ここまで   ///////////////////
//　サンクスページ
////////////////////////////////////////////*/


























