/*
Theme Name: takumi-theme
Author: Aston Partners
*/

/* CSS Document */

/*リセット*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

a {
    text-decoration:none;
}

/*リセットここまで*/

/***********************************************
全体
***********************************************/

html {
    font-family: "Zen Old Mincho", serif;
    font-style: normal;
    font-size: clamp(12px, 1.8vw, 24px);
    overflow-x: hidden;
}

h2 {
    color: #002b69;
    font-size: 1.5rem;
}

h2:after {
    content: "";
    border-bottom: 4px solid #bf9d5a;
    display: block;
    width: 100vw;
    margin-top: 0.5rem;
}

span.bold {
    font-weight: 800;
}

h3 {
    text-align: center;
    line-height: 1.5rem;
    color: #bf9d5a;
}

.sp-img {
	display: none;
}

.pc-img {
	display: inline-block;
}

@media screen and (max-width: 767px){
	
	.sp-img {
	display: inline-block;
	}

	.pc-img {
		display: none;
	}
}

/***********************************************
ヘッダー
***********************************************/

div#head-nav {
    width: 100vw;
    height: 80px;
    background-color: #002b69;
    border-bottom: 4px solid #bf9d5a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#head-nav img {
    height: 45px;
    margin-left: 30px;
}

.nav-menu {
    margin-right: 40px;
    font-size: 0.65rem;
    letter-spacing: 0.1rem;
}

.nav-menu a {
    color: rgba(255,255,255,1);
    margin: 0 1rem;
    transition: 0.5s all;
}

.nav-menu a:hover {
    color: rgba(191,157,90,1);
}

a.cv-button {
    background-color: rgba(191,157,90,1);
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    transition: 0.5s all;
}

a.cv-button:hover {
    background-color: rgba(191,157,90,0.6)
}

/*********  SP  ******************************/

@media screen and (max-width: 767px){

	div#head-nav {
		height: 50px;
		position: relative;
	}

	#head-nav img {
		height: 30px;
	}
	
	.nav-menu {
		position: absolute;
        background-color: #002b69;
        display: flex;
        flex-direction: column;
        top: 0;
        right: -100%;
        width: 60vw;
		height: 100vh;
        z-index: 10;
        margin: 0;
        padding-top: 10vh;
		transition: 1s all;
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu a {
		font-size: 1.25rem;
        line-height: 2rem;
        margin: 0 2rem 2rem 2rem;
	}
	
	a.cv-button {
		text-align: center;
		line-height: 3rem;
		font-size: 1.65rem;
	}
	
	.menu-button {
		position: absolute;
		width: 30px;
		height: 30px;
		right: 0;
		margin-right: 2rem;
		z-index: 101;
	}
	
	button {
		border: none;
		background: none;
		padding: 0;
		width: 100%;
		height: 100%;
	}
	
	button span {
		display: block;
		border-top: 1px solid #fff;
		transition: 1s all;
	}
	
	button span:first-child {
		transform: translateY(-12px) rotate(0);
	}
	
	.menu-button.open span:first-child {
		transform: translateY(1px) rotate(-45deg);
	}
	
	button span:nth-child(2) {
		transform: translateX(0);
		opacity: 1;
	}

	.menu-button.open span:nth-child(2) {
		transform: translateX(30px);
		opacity: 0;
	}
	
	button span:last-child {
		transform: translateY(12px) rotate(0);
	}
	
	.menu-button.open span:last-child {
		transform: translateY(-1px) rotate(45deg);
	}

}

/***********************************************
ヒーローセクション
***********************************************/

section#hero {
    width: 100vw;
    height: 55vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    position: relative;
    align-items: center;
}

.bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    will-change: transform, opacity;
}

.bg-current {
  z-index: -1;
}

.bg-next {
  z-index: -2;
  opacity: 0;
}

section#hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.hero-copy {
    z-index: 1;
    width: 16%;
}

.hero-logo {
    z-index: 1;
    width: 40%;
}

#hero img {
    width: 100%;
    height: auto;
}

.hero-logo p {
    color: #fff;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    line-height: 1.5rem;
}

.color-border {
    height: 60px;
    background-color: #002b69;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-border img {
    width: 3%;
}

/*********   SP   *****************************/

@media screen and (max-width: 767px) {
	section#hero {
		height: 130vw;
		flex-direction: column;
		justify-content: center;
	}
	
	.hero-copy {
		width: 60%;
		margin-bottom: 50px;
	}
	
	.hero-logo {
		width: 80%;
	}
	
	.hero-logo p {
		font-size: 1rem;
		line-height: 2rem;
	}
	
	.color-border {
		height: 30px;
	}
}


/***********************************************
お悩みありませんか
***********************************************/

section#problem {
    background-color: #8f8279;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 2rem 0;
    align-items: center;
}

h1 {
    color: #fff;
    font-size: 1.5rem;
}

#problem ul {
    list-style: none;
    line-height: 2.5rem;
}

li {
    background: #fff;
    margin: 2rem 0;
    padding: 0 1rem;
}

/***********************************************
解決します
***********************************************/

.solution-box {
    border-top: 6px solid #bf9d5a;
    border-bottom: 6px solid #bf9d5a;
    padding: 4rem;
}


.solution-box p {
    margin-top: 1rem;
    line-height: 2.5rem;
}

/***********************************************
価値の理由
***********************************************/

section#reason {
    padding: 4rem;
}

.reason-box {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.reason-box img {
    width: 40%;
    margin-right: 2rem;
}

.reason-content {
    width: 50%;
    line-height: 2rem;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 5px 5px 10px #002b69;
    position: relative;
}

.re01:after {
    content: "理由①【匠の専門家チーム】";
    position: absolute;
    background-color: #bf9d5a;
    color: #fff;
    padding: 0 0.5rem;
    top: -1rem;
    left: 0;
}

.re02:after {
    content: "理由➁【真の価値評価を目指す】";
    position: absolute;
    background-color: #bf9d5a;
    color: #fff;
    padding: 0 0.5rem;
    top: -1rem;
    left: 0;
}

.re03:after {
    content: "理由➂【豊富なネットワーク】";
    position: absolute;
    background-color: #bf9d5a;
    color: #fff;
    padding: 0 0.5rem;
    top: -1rem;
    left: 0;
}

/*************   SP   *************************/

@media screen and (max-width: 767px){
	.reason-box {
		flex-direction: column;
	}
	
	.reason-box img {
		width: 100%;
		margin: 0;
	}
	
	.reason-content {
		width: calc(100% - 4rem);
	}
}

/***********************************************
制約までの道のり
***********************************************/

section#plot {
    padding: 4rem 0;
    background-color: #002b69;
    width: 100vw;
}

#plot h2 {
    color: #fff;
    margin-left: 4rem;
}

.plot-box {
    display: flex;
    justify-content: center;
}

#plot img {
    margin-top: 2rem;
    width: 80%;
    max-width: 1000px;
}

/***********************************************
チーム
***********************************************/

section#team {
    padding: 4rem;
}

.member-box {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.member {
    width: 27%;
    background: #fff;
    box-shadow: 5px 5px 10px #002b69;
    padding: 1rem;
}

p.name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #bf9d5a;
    margin-bottom: 0.5rem;
}

p.title {
    text-align: center;
    color: #002b69;
    margin-bottom: 0.5rem;
}

p.summary {
    font-size: 0.75rem;
    line-height: 1rem;
}

#team > p {
    text-align: center;
    color: #bf9d5a;
    margin-top: 3rem;
    font-size: 1.25rem;
}

/*************   SP   *************************/

@media screen and (max-width: 767px){
	
	.member-box {
		flex-direction: column;
	}
	
	.member {
		width: calc(100% - 2rem);
		margin-bottom: 2.5rem;
	}
	
	#team > p {
		margin-top: 1rem;
	}
	
}

/***********************************************
料金体系
***********************************************/

section#price {
    padding: 4rem;
}

section#price h2 {
}

#price .price-box {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.price-box img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #999;
}

/***********************************************
結び
***********************************************/

section#end {
    padding: 4rem;
}

#end > div {
    margin-top: 2rem;
}

#end > div p {
    font-size: 1rem;
    line-height: 2rem;
}

/***********************************************
コンタクトフォーム
***********************************************/

section#contact {
    padding: 4rem;
    background-color: #002b69;
}


.contact-box {
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

div#wpcf7-f8-o1 {
    width: 80%;
    margin: 0 auto;
}

#contact label {
    font-weight: 800;
    font-size: 0.8rem;
}

#contact p {
    margin-top: 1rem;
}

#contact input {
    width: 100%;
    height: 1rem;
    margin-top: 10px;
}

#contact textarea {
    width: 100%;
    margin-top: 10px;
}

#contact input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 40%;
    height: 2rem;
    margin: 2rem auto 0 auto;
    display: block;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-color: #bf9d5a;
    font-size: 1rem;
    font-family: serif;
}

span.red {
    font-size: 0.6rem;
    color: red;
}

.wpcf7-turnstile {
    margin-top: 1em;
}


/***********************************************
フッター
***********************************************/

footer {
    width: 100vw;
    height: 200px;
    background-color: #002b69;
    color: #fff;
    border-top: 4px solid #bf9d5a;
}

.footer-flex {
    display: flex;
    align-items: center;
    margin: 2rem;
    justify-content: space-between;
}

.footer-flex img {
    height: 60px;
}

footer .copylight {
    font-size: 0.65rem;
    text-align: center;
}

.footer-menu {
    margin-right: 2rem;
    font-size: 0.75rem;
}

.footer-menu a {
    color: #fff;
    margin-left: 2rem;
}
