@charset "utf-8";


/*=============
common
===============*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Zen Maru Gothic', serif;
    background-color: #fff;
    color: #222;
    letter-spacing: 0.1em;
    /* cursor: none; */
}

.container {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}


/*==========================
loading view
==========================*/
#loading {
    width: 100%;
    height: 100vh;
    transition: all 0.4s;
    background-color: #fff;
    position: fixed;
    z-index: 10;
}

.dot {
    width: 100px;
    height: 100px;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dot__item {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #4682B4;
    z-index: 2;
}

.dot__item:nth-of-type(1) {
    left: 0;
    animation: bound .5s alternate infinite ease;
}

.dot__item:nth-of-type(2) {
    left: 40px;
    animation: bound .5s .3s alternate infinite ease;
}

.dot__item:nth-of-type(3) {
    left: 80px;
    animation: bound .5s .6s alternate infinite ease;
}

.dot__shadow {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .3);
    filter: blur(1px);
    bottom: 36px;
    z-index: 1;
    animation: shadow .5s alternate infinite ease;
}

.dot__shadow:nth-last-of-type(1) {
    left: 0;
}

.dot__shadow:nth-last-of-type(2) {
    left: 40px;
    animation: shadow .5s .3s alternate infinite ease;
}

.dot__shadow:nth-last-of-type(3) {
    left: 80px;
    animation: shadow .5s .6s alternate infinite ease;
}




/* animation */
@keyframes bound {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    
    100% {
        top: 0%;
    }
}

@keyframes shadow {
    0% {
        transform: scaleX(0.5);
    }
    
    40% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0.5)
    }
}


/* end of loading */
.loaded {
    display: none;
}

.body-loading{
    overflow: hidden;
}

/* fade in container */
/* .container {
    display: none;
} */

.container.open {
    display: block;
}


/*=============
Header
===============*/


.siteHeader {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 36px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.siteHeader .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.globalNav_list {
    display: flex;
    gap: 80px;
}

.globalNav_item a {
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globalNav_item a span {
    font-size: 10px;
}

.globalNav_item a:hover {
    text-decoration: underline;
}


/*=============
Modal Window
===============*/

@media screen and (max-width: 768px) {
    .globalNav {
        display: none;
    }

    .globalNav.active {
        display: block;
        position: fixed;
        width: 100%;
        height: 100svh;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background-color: #fff;
        z-index: 0;
    }

    .globalNav_list {
        display: block;
        width: 80%;
        margin: 50% auto;
        text-align: center;
    }

    .globalNav_item {
        margin: 48px 0;
    }

    .globalNav_list a {
        color: #222;
        font-size: 1.8rem;
    }
} /* 768px */

/*=============
hamburger menu
===============*/

.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        width: 26px;
        height: 26px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #222;
        position: absolute;
        left: 0;
        transition: 0.4s;
    }

    .hamburger span:first-of-type {
        top: 5%;
    }

    .hamburger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:last-of-type {
        bottom: 5%;
    }

    .hamburger.active span:first-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger.active span:last-of-type {
        bottom: 40%;
        transform: translateY(-50%) rotate(-45deg);
    }

}

/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: absolute;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

@media screen and (max-width: 768px) {
    .articleHeader {
        background-position: 20% top;
    }

    .mainTitle {
        font-size: 2.4rem;
    }

    .pageNav {
        display: none;
    }
}

/*=============
.pageNav
===============*/

.pageNav ul {
    display: flex;
    justify-content: center;
    padding: 16px 0;
    gap: 90px;
    font-size: 1.8rem;
    text-decoration: none;
    background-color: #F7F5F3;
}

.pageNav ul a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

/*=============
section.first  // about takao
===============*/

section {
    margin: 120px auto 120px;
}

.first span {
    font-size: 1.8rem;
    color: #444;
}

section h2 {
    font-size: 3.6rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 500;
}

section .inner {
    max-width: 1024px;
    margin: auto;
}

.inner.flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 56px auto 92px;
}

.inner .catchcopy {
    font-size: 2.4rem;
    text-align: center;
    line-height: 4.8rem;
    font-weight: 500;
}

.catchcopy span {
    font-size: 2.6rem;
    /* color: rgb(209, 89, 55); */
    color: red
}

.inner.flex ul {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.inner.flex ul h3 {
    font-size: 2.4rem;
    font-weight: 500;
    color: #4682B4;
    text-align: center;
    padding-bottom: 1.6rem;
}

.inner.flex ul p {
    font-size: 1.6rem;
    line-height: 3rem;
}

.inner_concept {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* .icon {
    width: 60px;
    margin: 20px auto;
} */

.icon {
    width: 35%;
    margin: 30px auto;
}

.first__inner__bg {
    display: block;
    margin: 14rem auto 0;
}


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

    section {
        margin: 50px 4% 79px;
    }
    
    section h2 {
        font-size: 1.8rem;
        line-height: 2.7rem;
    }

    .first span {
        font-size: 1.1rem;
    }

    /* .inner.flex {
        flex-wrap: wrap-reverse;
    } */

    .inner.flex {
        flex-wrap: wrap;
        margin: 40px auto 40px;
    }

    .inner .catchcopy {
        font-size: 1.6rem;
    }

    .catchcopy span {
        font-size: 2rem;
        color: rgb(209, 89, 55);
    }
    
    .inner.flex ul {
        flex-direction: column;
        gap: 40px;
        padding: 2rem 2rem;
    }
    
    .inner.flex ul h3 {
        font-size: 1.6rem;
    }
    
    .inner.flex ul p {
        font-size: 1.2rem;
        line-height: 2.4rem;
    }

    .icon {
        width: 30%;
        margin: 25px auto;
    }

    .first__inner__bg {
        margin: 0 auto;
    }
}


/*=============
section.second // work locations
===============*/

.second span {
    font-size: 1.8rem;
    color: #444;
}

.boxContainer {
    max-width: 960px;
    margin: 0 auto;
}

.box--one {
    width: auto;
    background-color: #F7F5F3;
    border-radius: 20px;
    margin: 0 30px;
}

.box--one--image {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.box--two--image {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.box--two--child {
    background-color: #F7F5F3;
    border-radius: 0px 0px 20px 20px;
}


.box span {
    display: inline-block;
    font-family: 'Zen Maru Gothic';
    font-size: 2.4rem;
    font-weight: 500;
    color: #4682B4;
    text-align: center;
    padding-bottom: 1.6rem;
}

.box p {
    font-size: 1.4rem;
    font-family: YuGothic, 游ゴシック;
}

.box {
    max-width: 910px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.box--one--child h4 {
    padding: 20px 0;
    font-size: 2.4rem;
    text-align: center;
}

.box--two--child h4 {
    padding: 20px 0;
    font-size: 2.4rem;
    text-align: center;
}

.box--one__tag ul {
    display: flex;
    justify-content: center;
    font-size: 12px;
    gap: 20px;
    margin: auto;
    padding-bottom: 50px;
}

.box--one__tag li {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.box--one__tag p {
    padding: 14px;
    background-color: #fff;
    border-radius: 50%;
}

.box--two__tag ul {
    display: flex;
    justify-content: center;
    font-size: 12px;
    gap: 20px;
    margin: 0 auto;
}

.box--two__tag li {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.box--one__tag li span {
    font-size: 1.1rem;
    color: #4682B4;
}

.box--two__tag li span {
    font-size: 1.1rem;
    color: #4682B4;
}


.box--two__tag {
    display: flex;
}


.btn {
    display: block;
    width: 162px;
    padding: 10px 40px;
    background-color: rgba(250, 190, 0, 0.65);
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
    margin: 4rem auto 0;
    position: relative;
    outline: none;
    z-index: 1;
    transition: all .3s;
}

.btn:hover {
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.slick-prev::before {
    /* color: rgba(250, 190, 0, .65); */
    color: #FABE00;
}

button.slick-prev {
    z-index: 999;
}

.slick-next:before {
    color: #FABE00;
}

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

    .second span {
        font-size: 1.1rem;
        color: #444;
    }

    .second p span {
        font-size: 1.5rem;
        color: #4682B4;
        padding-top: 4rem;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }

    .box span {
        padding-bottom: 1rem;
    }
    

    .box--one--child h4 {
        padding: 20px 0;
        font-size: 1.6rem;
        text-align: center;
    }

    .box--one__tag ul {
        font-size: 10px;
        gap: 6px;
        margin: auto;
        padding-bottom: 40px;
    }

    .btn {
        width: 130px;
        padding: 6px 20px;
        font-size: 1.2rem;
    }
}

/*=============
section.third // interview
===============*/


.third {
    background-color: lightcyan;
    width: 100%;
    background-image: url(../images/topintrvwbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 8rem 0;
}

.third h2 {
    color: #fff;
}

.third h2 span {
    font-size: 1.8rem;
    color: #fff;
}

.interview_ryota {
    background-color: rgba(255, 255, 255, 0.9);
    width: 40%;
    padding: 40px 20px;
    text-align: center;
    border-radius: 2rem;
}

.interview_takumi {
    background-color: rgba(255, 255, 255, 0.9);
    width: 40%;
    padding: 60px 40px;
    text-align: center;
    border-radius: 2rem;
}

.third img {
    width: 50%;
    border-radius: 50%;
    padding-bottom: 10px;
}

.third h4 {
    font-family: 'Zen Maru Gothic';
    font-size: 2rem;
}

.third p {
    padding: 10px 0;
    font-family: 'YuGothic';
    font-size: 1.5rem;
    line-height: 3.2rem;
}

.third .btn {
    display: inline-block;
    margin: 20px;
}

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

.third {
    /* margin: 44px auto 73px; */
    margin: 0 auto;
    padding: 4rem 0;
}

.third h2 span {
    font-size: 1.1rem;
}

.third h4 {
    font-size: 1.4rem;
}

.interview_ryota {
    width: 90%;
    padding: 30px 35px;
}

.interview_takumi {
    width: 90%;
    padding: 30px 35px;
}

.interview_ryota p{
    font-size: 1.2rem;
}

.interview_takumi p{
    font-size: 1.2rem;
}

}

/*=============
section.fourth // why takao
===============*/

.fourth span {
    font-size: 1.8rem;
    color: #444;
    text-align: center;
}

.imageBox {
    flex: 1;
}

.imageBox img {
    border-radius: 0.4rem;
}

.imageDescription {
    flex: 1;
}

.imageDescription img {
    width: 150px;
    margin-top: 93px;
}

.fourth .container {
    gap: 60px;
}

.imageDescription h3 {
    font-size: 2.4rem;
    color: #4682B4;
    padding-bottom: 3rem;
}

.imageDescription p {
    font-family: YuGothic, 游ゴシック;
    font-size: 1.6rem;
    line-height: 3.2rem;
}

.imageBox_two {
    width: 33.3%;
}

.imageBox_two img {
    border-radius: 0.5rem;
}

.imageBox_two h5 {
    font-family: YuGothic;
    font-size: 1.8rem;
    padding: 15px 0;
}

.imageBox_two p {
    font-family: YuGothic;
    font-size: 1.6rem;
    padding-bottom: 10px;
}

.imageBox_two p span {
    font-family: YuGothic;
    font-size: 1.4rem;
    padding-top: 10px;
}

.fourth h4 {
    font-size: 2.8rem;
    text-align: center;
}

.fourthSubtitle {
    font-size: 1.6rem;
    color: #444;
    text-align: center;
}

.flex-container {
    display: flex;
    gap: 20px;
    padding-top: 4rem;
}

.fourth__inner__bg {
    display: block;
    margin: 14rem auto 0;
}

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

    .fourth span {
        font-size: 1.1rem;
    }

    .fourth h4 {
        font-size: 1.8rem;
    }

    .fourth .container {
        flex-direction: column;
        gap: 20px;
    }

    .flex-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .imageBox {
        width: 100%;
    }

    .imageBox_two h5 {
        font-size: 1.5rem;
        padding: 10px 0;
    }

    .imageBox_two p span {
        font-size: 1.1rem;
    }

    .imageBox_two {
        width: 100%;
    }

    .imageBox_two  {
        font-size: 1.5rem;
    }

    .imageBox_two p {
        width: 100%;
        font-size: 1.2rem;
    }

    .imageDescription {
        width: 100%;
    }

    .imageDescription img {
            width: 125px;
            margin: 10% 0 0 60%;
    }

    .imageDescription h3 {
        font-size: 1.6rem;
        color: #4682B4;
        padding-bottom: 3rem;
        text-align: center;
    }
    
    .imageDescription p {
        font-family: YuGothic, 游ゴシック;
        font-size: 1.2rem;
        line-height: 2.4rem;
    }

    .inner.flex.flex-reverse {
        flex-direction: column-reverse;
    }

    .fourth__inner__bg {
        margin: 7rem auto 0;
    }
   
}


/*=============
section.fifth // access
===============*/

.fifth h2 {
    padding-bottom: 40px;
}

.fifth span {
    font-size: 1.8rem;
    color: #444;
}

iframe {
    display: block;
    width: 860px;
    height: 273px;
    border: none;
    margin: 0 auto;
}

figure {
    width: 80%;
    margin: 0 auto;
}

iframe {
    width: 80%;
    margin: 0 auto;
}

.accessmap {
    padding: 8rem 0;
}

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

    figure {
        width: 100%;
    }

    iframe {
        width: 100%;
    }

    .accessmap {
        display: none;
    }

}

/*=============
section.sixth // faq
===============*/

.sixth h2 {
    padding-bottom: 40px;
}

.sixth h2 span {
    font-family: YuGothic;
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    display: block;
}

.sixth .question {
    background-color: rgba(210, 180, 140, .15);
    border-radius: 2rem;
}

.faq {
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto;
}

.faq dt {
    padding: 20px;
    background-color: #F7F5F3;
    color: #000000;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq dt::after {
    content: '';
    cursor: pointer;
    width: 4%;
    height: 20px;
    background-image: url(../images/arrowdown.svg);
    background-size: contain;
    background-repeat: no-repeat;
    float: right;
}

.faq dt.open::after {
    content: '';
    background-image: url(../images/arrowup.svg);

}

.faq dd {
    display: none;
    padding: 20px;
    margin: 0 0 10px;
}

.faq dd + dt {
    margin-top: 5px;
}


@media screen and (max-width: 768px) {
    
    .sixth .inner.flex {
        gap: 0;
    }

    .faq {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .faq dt {
        padding: 20px;
        background-color: #F7F5F3;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .faq dd {
        display: none;
        padding: 15px;
        margin: 0 0 10px;
    }
    
    .faq dd + dt {
        margin-top: 5px;
    }

    .faq dt::after {
        width: 10%;
    }
}

/*=============
section.seventh // faq
===============*/

.seventh span {
    display: block;
    font-size: 1.8rem;
    color: #444;
}

.contact_button {
    display: block;
    width: 205px;
    padding: 18px 32px;
    background-color: rgba(250, 190, 0, 0.65);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.6rem;
    margin: 0 auto;
    position: relative;
    outline: none;
    z-index: 1;
    transition: all .3s;
}

.contact_button:hover {
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.seventh .inquiry_statement{
    font-family: YuGothic;
    font-size: 1.8rem;
    padding: 60px 0;
    text-align: center;
}

.contact {
    max-width: 1024px;
    margin: 0 auto;
}

.contact_parent {
    display: flex;
    justify-content: space-between;
}

.contact_child ul {
    display: flex;
    justify-content: space-evenly;
}

.contact_child li {
    padding-right: 24px;
}

.contact_child li img {
    width: 30px;
}

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

    .seventh .inquiry_statement {
        font-size: 1.2rem;
        padding: 20px 0 40px 0;
    }

    .contact_button {
        width: 156px;
        padding: 10px 22px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .contact_parent {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        justify-content: center;
    }

    .contact_child {
        margin: 0 auto;
    }

    .contact_child li img {
        width: 30px;
    }

    .contact_child li {
        padding-right: 0;
    }

    .contact_child ul {
        display: flex;
        justify-content: center;
        margin: 3rem auto;
        gap: 10px;
    }
}


/*=============
footer
===============*/
.siteFooter {
    color: #222;
    padding: 16px 0;
    text-align: center;
}

.fadeInBottom {
    transform: translate3d(0, 50px, 0);
    transition: 0.8s;
    opacity: 0;
}

.fadeInBottom.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 50px;
	width: 24px;
	height: 24px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: rgba(250, 190, 0, 0.65);
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

@media screen and (max-width: 768px) {
    #page-top {
        display: none;
    }
}