/*
 Theme Name: Original
 Author: INOTEM
 Author URI: https://inotem.jp/
*/

body {
  font-family: "Noto Sans JP";
}

main {
	width: 100%;
    height: 100vh;
    background-image: url('img/bg.png');
  	background-repeat: no-repeat;   
  	background-size: cover;       
  	background-position: center;
    padding-top: 60px;
    color: #3A3A3A;
}

.inner {
	width: 81%;
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
	font-size: 40px;
    letter-spacing: 3px;
}

h2 {
	font-size: 40px;
    letter-spacing: 5px;
    font-weight: 600;
}

.grn {
	font-size: 64px;
    color: #F18EBA;
    font-weight: bold;
}

.big {
	font-size: 60px;
    font-weight: bold;
    margin-left: 1rem;
}

.top {
	font-size: 20px;
    letter-spacing: 2px;
}

.circle {
	background-color: #F18EBA;
    color: #FFF;
    border-radius: 32px;
    padding: 3px 15px;
	font-size: 18px;
    display: inline-block;
    margin-right: 2rem;
}

.sp {
	display: none;
}

.txt_box {
	background-color: #FAFAFA;
    padding: 40px 8%;
    box-sizing: border-box;
    margin-top: 4rem;
}

.txt_box h3 {
	font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    margin-left: 60px;
}

.txt_box h3::before {
	content: "";
    background-color: #F18EBA;
    width: 40px;
    height: 2px;
    display: block;
    position: absolute;
    top: 50%;
    left:-50px;
}

.txt_box p {
	font-size: 18px;
    line-height: 1.8;
    letter-spacing: 2px;
}

@media screen and (max-width: 769px) {
	main {
        padding-top: 60px;
        background-position: right;
    }

    .inner {
        width: 90%;
        margin: 0 auto;
    }

    h1 {
        font-size: 27px;
        letter-spacing: 3px;
    }

    h2 {
        font-size: 27px;
        letter-spacing: 5px;
    }

    .grn {
        font-size: 54px;
    }

    .big {
        font-size: 45px;
        display: block;
        margin-left: 0;
    }

    .top {
        font-size: 16px;
        line-height: 2;
        margin-left: 5px;
    }

    .circle {
        display: block;
        margin-right: 0;
        width: fit-content;
        margin-bottom: 1rem;
        font-size: 16px;
        margin-left: -5px;
    }

    .txt_box h3 {
        font-size: 24px;
    }

	.pc {
    	display: none;
    }
    
    .txt_box p {
        font-size: 15px;
        line-height: 1.8;
        letter-spacing: 2px;
    }
    
    .sp {
    	display: block;
    }
}