@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;
}

.container {
    overflow: hidden;
}

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


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

.body-loading{
    overflow: hidden;
}

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

.container.open {
    display: block;
}


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
	color:#4682B4;
    font-size: 1.6rem;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

body{
    background:#fff;/*遷移アニメーションと同じ色を指定*/
}

body.appear{
    background:#fff;/*画面を開いた後の背景色を指定*/
}

.splashbg{
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left: 0;
	border-width: 0px;/*開始はボーダーの太さは0*/
	border-style:solid;
    border-color: #666;/*拡大する四角の色*/
	/* animation-duration:5s; */
	animation-fill-mode:forwards;
    z-index: 9999;
}

@keyframes backBoxAnime{
	99.9% {/*アニメーション終了ぎりぎりまで*/
        z-index: 2;/*最前面に*/
		border-width: 0px;/*開始はボーダーの太さは0*/
	}
    100%{
       z-index: -1; /*最背面に*/
        border-width: 0px;/*終了はボーダーの太さは0*/
    }
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
    position: relative;
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*=============
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;
        /* background-color: red; */
    }

    .globalNav_item {
        margin: 48px 0;
    }

    .globalNav_list a {
        color: #222;
        font-size: 2rem;
    }

   .logo img {
    width: 70%;
   }
} /* 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);
    }

}


/*=============
articleHeader
===============*/

.articleHeader {
    background-color: lightcyan;
    width: 100%;
    height: 100vh;
    padding: 36px;
    background-image: url(../images/workation-main.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.mainTitle {
    font-size: 4.0rem;
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 500;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

@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: 2.4rem;
    text-decoration: none;
    background-color: #F7F5F3;
}

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

/*=============
section.first  // takao workspace
===============*/


.first {
    margin-top: 8rem;
}

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

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

.first p {
    text-align: center;
    padding-top: 4rem;
    font-size: 2rem;
    line-height: 3.6rem;
}

.first img {
    max-width: 960px;
} 

section .inner {
    max-width: 1024px;
    margin: 80px auto 100px;
    /* background-color: beige; */
}

.inner.flex {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 60px;
}

@media screen and (max-width: 768px) {
    section {
        margin: 44px 4% 73px;
    }

    section h2 {
        font-size: 1.8rem;
        line-height: 2.7rem;
        padding-bottom: 2rem;
    }

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

    .first p {
        font-size: 1.2rem;
        padding: 3rem 0;
    }

    .first img {
        width: 100%;
    }

    section .inner {
        margin: 0;
    }
}

/*=============
section.second ~ section.sixth  // workspaces
===============*/

.inner_container {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.inner_container li {
    padding-bottom: 1rem;
}

.imageDescription {
    flex: 1;
}

.imageBox {
    flex: 1;
    padding-bottom: 10rem;
}

.imageBox img {
    border-radius: .4rem;
    padding: 10px 0;
}

.imageDescription h3 {
    font-size: 2.4rem;
    padding: 0 0 4rem 6rem;
    position: relative;
}

.imageDescription h3::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #4682B4;
    border-radius: 50%;
    text-align: center;
    left: 0;
}

.imageDescription h3 span {
    position: absolute;
    top: 0.2rem;
    left: 1.6rem;
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: #fff;
}

.imageDescription ul {
    font-family: YuGothic;
    font-size: 1.6rem;
    line-height: 3.2rem;
}

.imageDescription ul span {
    font-size: 1.8rem;
    font-weight: 600;
}

.imageDescription_color {
    color: #4682B4;
}

.imageDescription ul a {
    /* padding: 1.6rem 3.7rem;
    border: #222 solid;
    border-radius: 2rem; */
    font-size: 1.1rem;
}

.imageDescription li a {
    padding-bottom: 4.5px;
    border-bottom: 1px solid gray;
}

@media screen and (max-width: 768px) {
    .inner_container {
        flex-direction: column;
        gap: 0;
    }

    .flex-reverse {
        flex-direction: column-reverse;
    }
    
    .imageDescription ul span {
        font-size: 1.2rem;
    }
    .inner_container li {
        font-size: 1.2rem;
        line-height: normal;
    }

    .imageDescription h3::before {
        display: none;
    }

    .imageDescription h3 {
        font-size: 1.5rem;
        text-align: center;
        padding: 2rem 0;
    }

    .imageBox {
        padding-bottom: 0;
    }

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


/*=============
section.seventh  // comparison table
===============*/

.inner_contact {
    display: flex;
    justify-content: space-between;
    margin: 8rem 0;
}

.inner_contact p {
    font-size: 2rem;
    line-height: 3.6rem;
}

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

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

.table-wrap {
    display: none;
}

@media screen and (max-width: 768px) {
    .inner_contact {
        display: block;
        justify-content: space-between;
        margin: 4rem 0;
    }

    .inner_contact p {
        font-size: 1.2rem;
        padding: 2rem 0;
    }

    .inner_contact a {
        padding: 1.6rem 3.2rem;
        font-size: 1.2rem;
        display: block;
        width: 168px;
    }

    .inner_contact a {
        width: 172px;
        padding: 11px 34px;
        font-size: 1.2rem;
    }
    
    .inner_contact a:hover {
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
        border-color: transparent;
    }

    .seventh img {
        display: none;
    }

    .table-wrap {
        display: block;
        overflow-x: scroll;
      }
      .table {
        width: 100%;
        border-collapse: collapse;
        white-space: nowrap;
      }
      .table th,
      .table td {
        border: 2px solid #eee;
        padding: 4px 8px;
      }
}
/* BOTTOM */


.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) {

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

    .contact_child {
        margin: 0 auto;
    }

    .contact_child li {
        padding-right: 0;
    }

    .contact_child li img {
        width: 30px;
    }

    .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;
    }
}