@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: rgb(0, 0, 0);
    font-size: 1.25rem;
}
a {
    text-decoration: none;
    color: black;
}
.to_contact{
    background-color: rgb(127, 96, 0);
    border-radius: 30px;
    color: white;
    padding: 2px 5px;
}
.to_contact:hover{
    background: rgb(255, 217, 102);
    color: black;
}

img {
    max-width: 100%;
}
.wrapper {
    max-width: 100%;
    margin: 1rem auto;
    padding: 1rem 1rem;
    text-align: start;
    background-color: rgba(255, 217, 102, 0.2);
}
.wrapper_contact {
    max-width: 100%;
    margin: 1rem auto;
    padding: 1rem 1rem;
    background-color: rgba(255, 217, 102, 0.2);
    text-align: center;
}

section{
    border-top: 10px solid rgb(127, 96, 0);
    margin-top: 5px;
    padding: 1rem 0 0 0;
    text-align: center;
}

.must{
    background-color: red;
    border-radius: 5px;
    color:white;
    padding: 2px 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

/* 見出し */
.section-title_top{
    background-image: url(../images/top_flower_effected.jpg);
    min-height: 10rem;
    padding: 10rem 0;
    background-size: cover;

    font-size: 2rem;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
    
}
.section-title_buisiness{
    background-image: url(../images/buisiness_effected.jpg);
    background-size: cover;
    padding: 5rem 0;    
    
    font-size: 2rem;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}
.section-title_about{
    background-image: url(../images/aboutus_effected.jpg);
    background-size: cover;
    padding: 5rem 0;    
    
    font-size: 2rem;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}
.section-title_contact{
    background-image: url(../images/contact_effected.jpg);
    background-size: cover;
    padding: 5rem 0;    
    
    font-size: 2rem;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}
.section-title_contact_p{
    font-size:1.5rem;
}
.sub-title {
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px rgb(127, 96, 0) solid;
    font-weight: normal;
}
.section-title_form_check{
    background-image: url(../images/contact_effected.jpg);
    background-size: cover;
    padding: 5rem 0;    
    
    font-size: 2rem;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}

p {
    margin: 0rem 0 0rem;
}

/* iframe */
iframe {
    width: 100%;
}

/* ボタン */
.button {
    font-size: 1.375rem;
    background: rgb(127, 96, 0);
    color: #fff;
    border-radius: 30px;
    padding: 15px 30px;
}
.button:hover {
    background: rgb(255, 217, 102);
    color: black;
}

.grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 0%;
    margin-bottom: 0px;
}
.item{
    border: solid rgb(127, 96, 0);
}

.tel{
    width: 250px;
    background: rgb(127, 96, 0);
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    margin: 0px auto;
    font-size: 2rem;
    color: white;
}
.tel:hover {
    background: rgb(255, 217, 102);
    color: black;
}

/* HEADER
------------------------------- */
#header{
    /*min-height: 10vh;*/
    height: 4.5rem;
    margin-top: 0px;
}
.page-header {
    display: flex;
    justify-content: space-between;
    /*border-bottom: 10px solid rgb(127, 96, 0);*/
}
.logo {
    width: 200px;
    margin-top: 0px;
}
.main-nav {
    display: flex;
    text-transform: none;
    margin-top: 1.5rem;
    list-style: none;
}
.main-nav li {
    margin-left: 40px;
}
.main-nav a {
    color: rgb(0, 0, 0);
}
.main-nav a:hover {
    color: rgb(127, 96, 0);
}

/* article
------------------------------- */
#article{
    border-top: 2px rgb(127, 96, 0) solid;
    margin-top: 1.0rem;
    padding: 0.5rem 0 0 0;
}

#article .content-software{
    font-size: 1.75rem;
    text-decoration:underline;
    text-decoration-color: rgb(127, 96, 0);
    background-image: url(../images/software2.jpg);
    padding: 2rem 0 7rem;
    background-size: cover;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
    
}
#article .content-research{
    font-size: 1.75rem;
    text-decoration:underline;
    text-decoration-color: rgb(127, 96, 0);
    background-image:url(../images/research3_.jpg);
    padding: 2rem 0 7rem;
    background-size: cover;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}
#article .content-training{
    font-size: 1.75rem;
    text-decoration:underline;
    text-decoration-color: rgb(127, 96, 0);
    background-image:url(../images/education2_.jpg);
    padding: 2rem 0 7rem;
    background-size: cover;
    text-shadow:
    1px 1px 10px rgb(255, 255, 255),
    -1px 1px 10px rgb(255, 255, 255),
    1px -1px 10px rgb(255, 255, 255),
    -1px -1px 10px rgb(255, 255, 255);
}

/* location
------------------------------- */
#location {
    margin-top: 10px;
}
#location .wrapper {
    display: flex;
    justify-content: space-between;
}
.location-info {
    width: 30%;
}
.location-info p {
    padding: 12px 10px;
}
.location-map {
    width: 64%;
}
.location_table{
    margin-top: 1rem;
    width: 100%;
    border-collapse:collapse;
}
.location_table tr{
    border-top: 1px rgb(127, 96, 0) solid;
    border-bottom: 1px rgb(127, 96, 0) solid;
}
.location_table th{
    width: 20%;
    border-top: 1px rgb(127, 96, 0) solid;
    border-bottom: 1px rgb(127, 96, 0) solid;
    border-right: 1px rgb(127, 96, 0) solid;
    background-color:rgba(127, 96, 0, 0.5);
    font-weight: normal;
}
.location_table td{
    border-top: 1px rgb(127, 96, 0) solid;
    border-bottom: 1px rgb(127, 96, 0) solid;
    border-left: 1px rgb(127, 96, 0) solid;
    font-weight: normal;
}

/* CONTACT
------------------------------- */
/* フォーム */
form div {
    margin-bottom: 14px;
}
label {
    margin-bottom: 10px;
    display: block;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    background: rgba(255,255,255,.5);
    border: 1px rgb(127, 96, 0) solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    max-width: 240px;
}
textarea {
    width: 60%;
    max-width: 100%;
    height: 6rem;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
    line-height: 1;
}

#privacy_policy iframe{
    width: 70%;
    max-width: 100%;
    height: 20rem;
    max-height: 700%;
}
.privacy_policy_table{
    margin: auto;
    width: 90%;
    border-collapse:collapse;
    border: 1px rgb(127, 96, 0) solid;
}
.privacy_policy_table td{
    padding-left: 1rem;
}
.contact_img{
    max-width: 3%;
    padding: 0rem 1rem 0rem 0rem;
}


/* フッター
------------------------------- */
footer {
    background: rgb(127, 96, 0);
    text-align: center;
    padding: 0px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}
.wrapper_footer {
    max-width: 100%;
    padding: 1rem 1rem;
    text-align: center;
}

/*スクロールトップ
*/
.pagetop {
	color: black;
	background-color: rgb(255, 217, 102);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover {
	color: black !important;
	background-color: rgba(128,128,128,.5);
	text-decoration: none;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {

    .section-title_top{
        padding: 4rem 1rem;
        font-size: 1.5rem;
    }

    .section-title_buisiness{
        padding: 4rem 1rem;    
    }

    .section-title_about{
        padding: 4rem 1rem;    
    }

    .section-title_contact{
        padding: 4rem 1rem;    
    }
    .section-title_contact_p{
        font-size:1.25rem;
    }
    .sub-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .section-title_form_check{
        padding: 4rem 1rem;    
    }
    .button {
        font-size: 1.25rem;
    }

    .grid {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .item{
        font-size: 0.9rem;
    }

    #header{
        height: 9rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        width: 200px;
    }
    .main-nav {
        font-size: 1rem;
        padding: 0 0 0 0;
    }
    .main-nav li{
        text-align: start;
        margin-left: 1rem;
    }

    #article{
        padding: 0.5rem 0 0 0;
    }
    
    #article .content-software{
        font-size: 1.5rem;
        padding: 2rem 0 4rem;
    }
    #article .content-research{
        font-size: 1.5rem;
        padding: 2rem 0 4rem;
    }
    #article .content-training{
        font-size: 1.5rem;
        padding: 2rem 0 4rem;
    }
    
    #location .wrapper {
        display: grid;
        max-width: 100%;
        margin: 1rem auto;
        padding: 1rem 1rem;
        text-align: start;
        background-color: rgba(255, 217, 102, 0.2);
    }
    .location-info {
        width: 100%;
    }
    .location-info p {
        padding: 10px 10px;
        text-align: center;
    }
    .location-map {
        width: 100%;
    }
    .location_table{
       font-size: 1.0rem;
    }

    textarea {
        width: 100%;
        max-width: 240px;
    }
    
    #privacy_policy iframe{
        width: 100%;
        max-width: 240px;
        max-height: 100%;
    }
    
    .contact_img{
        max-width: 8%;
        padding: 0rem 0rem 0rem 0rem;
    }
}
