/*
Theme Name: TTN THEME
*/

@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================================
 * RESET
 * ========================================================== */
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,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
}

/* ==========================================================
 * VARIABLES
 * ========================================================== */
:root {
    --base-color: #161616;
    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --montserrat: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
    --outfit: "Outfit", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;

    --wrap: 1000px;
    --padding: 160px;
    --brand-color: #499e37;
    --header-h: 100px;
}

/* ==========================================================
 * BASE
 * ========================================================== */
#body-wrap {
    min-width: 1000px;
    overflow-x: clip;
}

body {
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    font-family: var(--base-font);
    padding-top: var(--header-h);
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a {
    transition: .2s;
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: .7;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul,
ol {
    list-style: none;
}

.padding-top{
    padding-top: var(--padding);
}

.padding-bottom{
    padding-bottom: var(--padding);
}

.padding-tb{
    padding: var(--padding) 0;
}

/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    transition : all 600ms;
    }

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
   opacity : 1;
}


/* HEADER */
#header{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
    height: var(--header-h);
    width: 100%;
    transition: .2s;
}
#header img{
    transition: .2s;
}
#header.is-fixed{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 80px;
}
#header.is-fixed img{
    width: 300px;
}
.nav-toggle,
.header-menu,
#overlay{
    display: none;
}


#aside{
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    left: 50px;
}
#aside ul li{
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    transition: .2s;
}
#aside ul li::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--base-color);
}
#aside ul li::after{
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-color);
    transition: .2s;
}
#aside ul li.is-active{
    padding-left: 35px;
}
#aside ul li.is-active a{
    color: var(--brand-color);
}
#aside ul li.is-active::before{
    background-color: var(--brand-color);
}
#aside ul li.is-active::after{
    width: 30px;
}
#aside ul li:last-child{
    margin-bottom: 0;
}
#aside ul li a{
    font-size: 14px;
    font-weight: bold;
    font-family: var(--montserrat);
    letter-spacing: 0.1em;
}



/* FOOTER */
#footer{
    padding: 150px 0 30px;
    text-align: center;
}


/* INDEX */
.title{
    text-align: center;
    margin-bottom: 40px;
}
.title-en{
    color: var(--brand-color);
    font-size: 42px;
    line-height: 1.2;
    font-weight: bold;
    font-family: var(--montserrat);
}
.title-text{
    font-weight: bold;
    font-size: 18px;
}
.top-concept{
    text-align: center;
}
.top-concept__text{
    font-size: 18px;
    text-align: center;
    line-height: 2.2;
}
.top-concept__text span{
    font-size: 22px;
    font-weight: bold;
}
.top-items__item{
    text-align: center;
}
.top-items__item + .top-items__item{
    text-align: center;
    margin-top: 80px;
}
.top-items__item-label{
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}
.top-items__item-img img{
    width: 100%;
}
.top-items__title{
    text-align: center;
    color: var(--brand-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.top-items__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 100px;
}
.top-items__title{
    padding-top: 140px;
}
.top-items__subtitle{
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #efefef;
}
.title + .top-items__title{
    padding-top: 0;
}
.top-items__title + .top-items__subtitle{
    padding-top: 0;
    margin-top: 0;
    border: none;
}
.top-items__list-item{
    text-align: center;
}
.top-items__list-item__label{
    margin-top: 16px;
    font-weight: bold;
}
.top-items__subtitle{
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.top-contact__form{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 60px 80px;
}
.top-contact__form-cont dl + dl{
    margin-top: 30px;
}
.top-contact__form-cont span.must{
    margin-left: 15px;
    color: var(--brand-color);
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
}
.top-contact__form-cont dl{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.top-contact__form-cont dt{
    font-size: 16px;
    font-weight: bold;
    width: 250px;
}
.top-contact__form-cont dt small{
    font-size: 12px;
}
.top-contact__form-cont dd{
    width: calc(100% - 250px);
    padding-left: 20px;
}
.top-contact__form-cont dd input[type="radio"],
.top-contact__form-cont dd input[type="checkbox"]{
    appearance: auto;
    display: inline-block;
    position: relative;
    top: -2px;
}
.top-contact__form-cont dd input[type="text"],
.top-contact__form-cont dd input[type="tel"],
.top-contact__form-cont dd input[type="email"],
.top-contact__form-cont dd textarea{
    border-bottom: 1px solid #ccc;
    width: 100%;
    font-weight: normal;
}
.top-contact__form-cont dd input:focus,
.top-contact__form-cont dd textarea:focus{
    outline: none;
}
.top-contact__form-cont dd textarea{
    height: 150px;
    resize: none;
}
.top-contact__form-cont dd a{
    display: inline-block;
    text-decoration: underline;
    color: var(--brand-color);
    font-weight: bold;
}
.top-contact__form-agree{
    margin: 30px 0;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 3px;
    background-color: #ebebeb;
}
.top-contact__form-submit{
    text-align: center;
}
.top-contact__form-submit input[type="submit"]{
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    padding: 14px 20px;
    border-radius: 5px;
    transition: .2s;
}
@media screen and (min-width: 992px) {
    .top-contact__form-submit input[type="submit"]:hover{
        background-color: var(--brand-color);
        color: #fff;
    }
}
.wpcf7-list-item{
    margin-left: 40px;
}
.wpcf7-list-item:first-child{
    margin-left: 0;
}
.wpcf7-not-valid-tip{
    font-size: 13px;
    margin-top: 5px;
}
