@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@600&display=swap');

@font-face {
  font-family: 'RopeMf';
  src: local('RopeMf'), url(../assets/Fonts/RopeMf-WVA9.ttf) format('truetype');
}

@font-face {
  font-family: 'Heather';
  src: local('HEATHER'), url(../assets/Fonts/HEATHER.TTF) format('truetype');
}

html {
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  margin: 0;
  background-color: darkorange;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    color:blue;
}




/* Header */
.header {
    height: 10rem;
    
    background-color: #e9dae9;
    text-align: center;
    margin:auto;
    margin-top: 1px;
    border-radius: 50px;
    padding:0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'RopeMf';
    font-size: 10em;
    font-weight:unset;
    font-weight:normal;
    color:rgb(80, 28, 0);
    text-shadow: 0px 1px 1px lightgrey;
}

.header-logo {
    border-radius: 25px;
}

@media only screen and (max-width: 1400px) {
    .header {
        font-size:7em;
    }
}

@media only screen and (max-width: 1000px) {
    .header {
        font-size:4em;
    }
}

/* Footer */
.footer {
    height: auto;
    background-color: #723272;
    display: flex;  
}

.footer-contact {

    width:400px;
    flex-grow:1;
    padding:0.5%;
}

.footer-links {
    
    height:100%;
    flex-grow:3;
    display: flex;
    justify-content: center;
    
    align-content: center;

    padding:0.25%;
    padding-top:3em;
}

.footer-entry {
    margin-left: 5em;
    margin-right: 5em;
    height: 2em;
    
}

.footer-entry a {
    color: darkblue;
}

.footer-entry a:visited {
    color: rgb(0, 0, 68);
}

.footer-entry a:hover {
    color: blue;
}

.footer-logo {
    height:100px;
}

.footer-social {
    padding:0.25%;
    flex-grow:1;
    display: flex;
}

.footer-linkedin {
    height:50px;
    margin-top:15px;
}

@media (max-width: 1425px ) {
    .footer-entry {
        margin-left: 1em;
        margin-right: 1em;
    }
}

@media (max-width: 650px ) {
    .footer-links {
        flex-wrap:wrap;
        align-content:flex-start;
    }

    .footer-entry {
        margin:0.5em;
    }
}

/* Navbar */
.wrapper {
    width: 100%;
    background-color: darkorange;
    text-align: center;
    height: auto;
    margin-top: -3px;
    margin-bottom:3px;
    position:sticky;
    top:0;

    display:flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

}

.wrapper button {

    border: 1px solid black;
    
    margin-left:1px;
    height: 3rem;
    line-height:3rem;
    border-radius: 10px;
    flex-grow: 1;
    border: none;
    
    cursor: pointer;

    box-shadow: 10px 10px 20px 10px lightblue inset;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.25rem;
}

.wrapper button:last-child {
    margin-right:2px;
}

.wrapper button:hover {
    background-color: lightblue;
}

.wrapper button:active {
    background-color: rgb(0, 153, 255);
}


/* Containers */
/* Page Content */
.home-content {
    text-align: center;
    padding: 25px;
    padding-top:0px;
    padding-left: 50px;
    padding-right: 50px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    width:95%;
    margin:auto;
    margin-bottom: 30px;
    line-height: 2em;

    background-color: #cf85cf;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.25);

    white-space:pre-line;
    
}

.list-wrapper {
    white-space: normal;
    text-align:left;
    padding:5%;
    padding-left:20%;
    padding-right:20%;
    line-height: 3em;
}

.services-list-header {
    text-align: center;
    font-weight: bold;
    margin:0;
    margin-top:-2%;
}

.list-content {
    margin:0;
    margin-left:2%;
    line-height:1.5rem;
}

@media screen and (max-width: 1200px) {
    .list-wrapper {
        padding-left:2%;
        padding-right:2%;
    }
}



.content-header {
    background-color: lightblue;
    border-radius: 5px;
    height:60vh;
    padding:5px;

    display: flex;
    flex-wrap:wrap;
    justify-content:center;
}

.header-left {
    flex-direction: row;
}

.header-right {
    flex-direction: row-reverse;
}

.header-center {
    flex-direction: row;
}

.image-right {
    height:100%;
    border-radius:25px;
    margin-right:5em;
}

.image-left {
    height:100%;
    border-radius:25px;
}

.image-center {
    height:70%;
    border-radius:25px;
}

.header-text-offset {
    width:40%;
    height: 50vh;
    
    display:flex;
    flex-direction: column;
    
    align-content: center;
    align-items: center;
    justify-content:center;

    font-size:2rem;
}

.header-text-center {
    width:100%;
    height: 18vh;
    
    display:flex;
    flex-direction: column;
    
    align-content: center;
    align-items: center;
    justify-content:center;

    text-align: center;
    font-size:2rem;
}


@media only screen and (max-width: 1600px) {
    
    .header-text-offset {width:100%; padding:1em; position:relative; height:15vh; line-height: 7vh; margin:0}
    .header-text-right {width:100%; padding:1em; position:relative; height:15vh; line-height: 7vh; margin:0}
    .header-text-center {line-height: 4vh; margin:0}
    .image-left {margin:0; height:44vh;}
    .image-right {margin:0; height:44vh;}
}

@media only screen and (max-width: 675px) {
    .image-left {margin:0; height:35vh;}
    .image-center {height: 35vh;}
    .image-right {margin:0; height:43vh;}
}

@media only screen and (max-width: 550px) {
    .image-left {margin:0; height:29vh;}
    .image-center {height: 29vh;}
}


/* Header To Body */
.right-square {
    width:2.5%;
    height:50px;
    float:right;
    background-color: #cf85cf;
    
}

.right-circle {
    width:100%;
    height:50px;
    border-top-left-radius: 50px;
    background-color: darkorange;

    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35) inset;
}

.left-circle {
    width:100%;
    height:50px;
    border-top-right-radius: 50px;
    background-color: darkorange;

    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35) inset;
}

.left-square {
    width:2.5%;
    height:50px;
    float:left;
    background-color: #cf85cf;
}

/* Content With Image */
.body-container {
    display: flex;
    
    justify-content: center;
    background-color: lightblue;
}

.body-image {
    margin:auto;
    margin-right:100%;
    height:50vh;
    border-radius: 25px;
    display: block;
}

.body-center {
    display: flex;
    justify-content: center;
    padding:5px;
}

.main-content {
    text-align: center;
    padding: 1%;
    margin-left:5%;
    margin-right:10%;
    line-height: 3em;
    padding-right:5%;
}

.second-content {
    text-align: center;
    background-color: lightblue;
    padding:2%;
}

@media screen and (max-width: 1200px) {
    .body-container {display: flex; flex-wrap:wrap;}
    .body-container {width:100%;}

    .body-image {margin:0;}
}

/* Text Content */
.text-container {
    background-color: lightblue;
    padding-right:7.5%;
    padding-left:7.5%;

}

.text-title {
    text-align: center;
    padding: 1%;
    line-height: 3em;
    font-weight: bold;
    font-size: 1.25em;
    padding-bottom: 0;
}

.text-content {
    text-align: center;
    padding: 1%;
    line-height: 3em;
    padding-top:0;   
}

/* End Containers */

/* Button */
.btn {
    width:auto;
    height: auto;
    line-height:2.5rem;
    border-radius: 10px;
    background-color: aqua;
    border: 1px darkblue solid;
    padding:5px;
    padding-left:10px;
    padding-right:10px;
    cursor: pointer;
    font-family: Calibri,Lato,sans-serif;
    font-size: 1rem;
    margin:1em;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}

.btn:hover {
    background-color:rgb(104, 199, 231);
}

.current-page {
    background-color:lightskyblue;
}

.underline {
    border-bottom: 10px solid darkorange;
    border-radius: 10px;
    padding-bottom:10px;
    margin-top:5px;
    margin-bottom:10px;
}

.space {
    width: 100%;
    margin-top:5px;
}

.no-link-style {
    text-decoration: none;
    color:unset;
}
.no-link-style:hover {
    color: unset;
}

.invisible {
    display: none;
}

.superTest {
    width:100%;
}