@charset "utf-8";



/*
BaseStyle
 */
body {
    font-family: 'BIZ UDPMincho', serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 10px;
    line-height: 1.5;
    color: #3F4446;
}
html {
    font-size: 10px;
}

* {
	float: none;
	position: static;
}

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






/*
nav
*/
.navArea {
}
.header-nav {
    background-color: #4D4B52;
    width: 100%;
    height: 50%;
    display: block;
    position: fixed;
    top: 0;
    left: 300px;
    bottom: 0;
    transition: all 1.5s;
    z-index: 200;
    opacity: 0;
}
.open nav {
    left: 0;
    opacity: 1;
}
.open nav +.logo.svg {
    display: none;
}
.header-navlist {
    position: absolute;
    top: 10%;
    left: 65%;
}
.header-navitem {
    margin-top: 10px;
    padding: 10px 60px 10px 0px;
}
.header-nav a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 700;
    transition:	all 1.5s ease;
}

/* 通常時はホバー時の文字を非表示にする */
a .nav-hover{
    opacity: 0;
}
/* ホバー時は通常時の文字を非表示にする */
a:hover .nav-nomal{
    display: none;

}
/* ホバー時に、ホバー時の文字を表示する */
a:hover .nav-hover{
    display: inline;
    opacity: 100;
    font-weight: 200;
    font-size: 2.2rem;
}
a:hover .nav-hover last-child {
    font-size: 0.5rem;
}

/*.nav-insta-icon*/
nav .insta-icon-menu svg {
    width: 40px;
    height: auto;
}
.insta-icon-menu path {
    fill:#fff;
    -webkit-transition: fill 0.3s ease-out;
    -moz-transition: fill 0.3s ease-out;
    -o-transition: fill 0.3s ease-out;
    -ms-transition: fill 0.3s ease-out;
    transition: fill 0.3s ease-out;
}

.nav-logo {
    position: absolute;
    width: 10%;
    height: auto;
    top: 15%;
    margin-left: 24%;
}
.nav-logo .cls-1 {
    fill:#f2f2f2;
}
.toggle-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 70px;
    height: 80px;
    z-index: 1005;
    cursor: pointer;
    margin: 0;
    padding: 0;
}
.toggle-btn span {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.7s;
}
.toggle-btn span {
}
.toggle-btn span:nth-child(1) {
    top: 6px;
    left: 19px;
}
.toggle-btn span:nth-child(2) {
    top: 21px;
    left: 11px;
}
.toggle-btn span:nth-child(3) {
    bottom: 40px;
}

.open .toggle-btn span {
    z-index: 1000;
    width: 120px;
}
.open .toggle-btn span:nth-child(1) {
    transform: translateY(40px) translateX(-70px) rotate(-140deg);
}
.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
    transform: translateY(5px) translateX(-52px) rotate(140deg);
}

#mask {
    display: none;
    transition: all 1s;
}
.open #mask {
    display: block;
    background-color: #000000;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 150;
    cursor: pointer;
}


/*
showcase
*/
.les-mv-img {
    display: none;
}
.showcase {
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #a5a5a5;
    color: #fff;
    transition: 0.5s;
}
.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    z-index: 100;
}
.showcase h1 svg {
    width: 60px;
    height: auto;
}
.logo .cls-1 {
    fill:#f2f2f2;
}
.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 50;
}
.video-text {
    position: absolute;
    display: inline-block;
    display: flex;
    top: 15%;
    right: 48%;
    z-index: 100;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.video-text p {
    writing-mode: vertical-rl;/*文字を縦にする*/
    text-orientation: mixe;/*文字を縦にする*/
    transform: rotate( 360deg );/*文字を縦にする*/
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 5px;
    font-family: serif;
}
.video-text-right {
    padding-top: 90px;
    padding-right: 25px;
}


/* video text anime */

.video-text-left {
    animation-delay: 0.2s;
}
.video-text-right {
    animation-delay: 1.5s;
}
.video-text-left {
    opacity: 0;
}
.video-text-right {
    opacity: 0;
}
.fadeUpVideo {
    animation-name: fadeUpVideoAnime;
    animation-duration: 8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpVideoAnime {
    form {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* video text anime end */


.social {
    cursor: pointer;
    padding-top: 33%;
    z-index: 100;
}
.fm {
    writing-mode: vertical-rl;/*文字を縦にする*/
    text-orientation: mixe;/*文字を縦にする*/
    transform: rotate( -180deg );/*文字を縦にする*/
    text-transform: uppercase;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    font-weight: bold;
    margin: 0 0 0 3.1px;
}
.social svg {
    width: 30px;
    margin-top: 15px;
    margin-left: -3px;
}
.social-hover {
    display: block;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0;
    -webkit-transition:	all 1.5s ease;
	transition:	all 1.5s ease;
}
.social:hover .social-hover {
    display: block;
    opacity: 100%;	/* マスクを表示する */
	padding-top: -20px;	/* ホバーで下にずらす */
}







/*
message
*/
.Message {
    background-color: #a5a5a5;
    width: 100%;
    height: 1800px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin: 0;
}
.message-tex {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 270px;
    color: #ffffff;
    text-align: left;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.Message-top {
    color: #737373;
    margin: 0;
    font-size: 2.5rem;
}
.message-headline {
    font-size: 6rem;
    line-height: 90px;
    margin-top: 150px;
}
.message-discription {
    font-size: 1.9rem;
    line-height: 2.5em;
    margin-top: 60px;
}
.message-img img {
    width: 60%;
    height: auto;
    opacity: 55%;
    margin-left: 320px;
}


/* fadeUp */

/* .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
/* .fadeUpTrigger{
    opacity: 0;
} */ 






/*
footer
*/
.sp-button-arr {
    display: none;
}

footer {
    background-color: #737373;
    width: 100%;
    height: 480px;
}
.footer-add-arr {
    width: 960px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 180px;
}
.btn-arr {
    display: flex;
    width: 600px;
    justify-content: space-between;
    align-items: center;
}
.add-arr p {
    color: #fff;
    line-height: 1em;
    font-size: 1.8rem;
}
.com-name {
    padding-bottom: 10px;
}

.btn-in-co {
    display: flex;
}
button {
    width: 190px;
    height: 50px;
    align-items: center;
    background-color: #ccc714;
    color: #fff;
    border: none;
    font-weight: 400;
    font-size: 1.8rem;
    z-index: 250;
}
.btn-in-co a {
    z-index: 10000;
}
.btn-con {
    margin-left: 40px;
}
.responsive-btt-arr{
    display: none;
}


/*comming soon...*/
.hover-bottom-coso {
    color: #fff;
    font-size: 1.8rem;
    display: block;
    left: 10px;
    z-index: 1;
    -webkit-transition:	all 1.5s ease;
	transition:	all 2s ease;
}
.btn-in-co a :hover {
    background: #737373;
    color: #ccc714;
    border: 1px solid #ccc714;
    display: block;
    cursor: pointer;
}
/* coso 通常時はホバー時の文字を非表示にする */
.hover-bottom-coso {
    opacity: 0;
}
/* coso ホバー時に、ホバー時の文字を表示する */
.btn-ins a:hover + .hover-bottom-coso {
    display: block;
    opacity: 100%;	/* マスクを表示する */
	padding-top: 10px;	/* ホバーで下にずらす */
}


.button-btt-circle svg {
    width: 130px;
}
/*btt*/
.btn-btt {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
.btn-btt a {
    z-index: 1;
}
.btn-btt-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
}
.button-btt-circle svg {
    animation: rotate-anime 80s steps(60) infinite;
}
@keyframes rotate-anime {
    0%  {transform: rotate(0);}
    100%  {transform: rotate(360deg);}
}
/* ↑ */
.btn-btt-up p {
    position: absolute;
    color: #ccc714;
    font-size: 4rem;
    text-align: center;
    top: 19%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition:		all 0.2s ease;
    scroll-behavior: smooth;
}
.btn-btt-up p:hover {
    font-size: 4.4rem;
    display: block;
}

button {
    border: none;
}
/*copy*/
.footer-arr {
    width: 960px;
    margin: 0 auto;
    height: 480px;
    position: relative;
}
.footer-copy {
    color: rgb(255, 255, 255);
    position: absolute;
    bottom: 10px;
}





/* スマホ用アイコン */
.bottom-mail-btn svg {
    fill:#ccc714;
    width: 50px;
    display: none;
}
.bottom-insta-icon svg {
    fill:#ccc714;
    margin: 0;
    padding: 0;
    width: 50px;
    display: none;
}

html{
    scroll-behavior: smooth;
}

/* index終わり */



/*

company

*/
/*
showcase
*/
.com-con-showcase header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 40px;
    z-index: 20;
}
.com-con-showcase h1 svg {
    width: 60px;
    height: auto;
}
.logo .cls-1 {
    fill:#f2f2f2;
}
/*
company img
*/
.com-con-top-img {
    position: relative;
}
.company-top-img img {
    width: 100%;
    height: auto;
}
/*
company insta
*/
.com-con-social {
    z-index: 1;
    position: absolute;
    top: 0;
    padding-top: 9%;
    padding-left: 50px;
    cursor: pointer;
}
.com-con-fm {
    writing-mode: vertical-rl;/*文字を縦にする*/
    text-orientation: mixe;/*文字を縦にする*/
    transform: rotate( -180deg );/*文字を縦にする*/
    text-transform: uppercase;
    font-size: 0.2em;
    letter-spacing: 0.5rem;
    font-weight: bold;
    margin: 0 0 0px 0;
    color: #fff;
}
.com-con-social svg {
    width: 26px;
    margin-top: 0px;
    margin-left: -3px;
}
.com-con-social-hover {
    display: block;
    font-size: 0.3rem;
    margin: 0;
    opacity: 0;
    -webkit-transition:	all 1.5s ease;
	transition:	all 1.5s ease;
}
.com-con-social:hover .social-hover {
    display: block;
    color: #fff;
    font-size: 0.5rem;
    opacity: 100%;	/* マスクを表示する */
	padding-top: -20px;	/* ホバーで下にずらす */
}

.header-company {
    width: 100%;
    background-color: #ffffff;
}
.company-img img {
    position: relative;
    width: 100%;
}

/* title */
.title-com-con {
    position: absolute;
    display: flex;
    align-items: center;
    color: #ffffff;
    top: 0;
    padding: 13% 0 0 15%;
    margin: 0;
}
.com-con-en {
    padding: 0;
    margin: 0;
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.com-con-ja {
    z-index: 100;
    padding: 0;
    margin: 0 0 0 80px;
    margin-bottom: -45px;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 0.2em;
    font-family:Georgia, 'Times New Roman', Times, serif;
    z-index: 1;
}


/* company arr */
.company-arr {
    width: 960px;
    height: 1600px;
    margin-right: auto;
    margin-left: auto;
}
.company-table {
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: top;
}
.company-table th {
    width: 30%;
    height: 23px;
    padding: 0px 50px 80px 0px;
    text-align: left;
    font-size: 1.9rem;
    vertical-align: top;
    font-weight: 600;
}
.company-table td {
    font-size: 1.9rem;
    font-weight: 500;
    padding-left: 50px;
    vertical-align: top;
}
.company-hight {
    padding-top: 0px;
}

/* company end */


/*

contact

*/

/*about img*/
.contact-top-img img {
    width: 100%;
    height: auto;
}
/*contact arr*/
.contact-arr {
    width: 960px;
    height: 1700px;
    margin-right: auto;
    margin-left: auto;
}
.contact-att-arr {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 760px;
    position: relative;
}
.contact-att {
    display: block;
    font-size: 1.6rem;
    line-height: 2.5em;
    text-align: left;
    justify-content: center;
}
.contact-tel {
    display: inline-block;
    position: absolute;
    right: 0;
    margin-right: 20px;
}
.contact-tel a {
    text-decoration: none;
    font-size: 2rem;
    color: #3F4446;
}
/*mail*/
.mail-arr {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 100px;
    z-index: 1000;
}
/*
caption(contact/company)
*/
.caption {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: 100;
    margin-top: 200px;
    font-size: 3rem;
    margin-bottom: 20px;
}
.caption-line {
    position: absolute;
    width: 960px;
    height: 1px;
    background-color: #3F4446;
    margin-bottom: 100px;
}
/*mail table*/
.form-table {
    margin-right: auto;
    margin-left: auto;
    margin-top: 150px;
}
.form-table th {
    width: 24%;
    text-align: right;
    font-size: 1.8rem;
    font-weight: 600;
    padding-bottom: 80px;
}
.form-table td {
    padding-left: 100px;
    padding-bottom: 80px;
    top: 0;
}
.input[type="text"] {
    width: 480px;
    height: 50px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="email"] {
    width: 480px;
    height: 50px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="tel"] {
    width: 480px;
    height: 50px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="textarea"] {
    width: 480px;
    height: 150px;
    background-color: #e8e8e8;
    border: none;
    text-decoration: none;
}
/* submit btn */
.form-button button {
    background-color: #4D4B52;
    position: absolute;
    color: #fff;
    margin-top: 20px;
    width: 170px;
    height: 50px;
    right: 100px;
    cursor: pointer;
    font-size: 1.8em;
    font-weight: 700;
    border-radius: 0%;
}
.form-button :hover {
    border: solid 2px #4D4B52;
    color: #4D4B52;
    background-color: #fff;
    font-weight: 700;
}


/*error*/
.p-contact__error {
    display: none;
    font-size: 1.3rem;
    color: #dd771d;
}

input[type="text"]:required + .p-contact__error  {
    display: block;
}

input:invalid:focus {
    border: solid 1px #dd771d;
    outline: 0;
}

/* contact end */


/*

about

*/

/*
showcase
*/
.common-showcase header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 40px;
    z-index: 20;
}
.common-showcase h1 svg {
    width: 60px;
    height: auto;

}
.logo .cls-1 {
    fill:#f2f2f2;
}
/*
about img
*/
.about-top-img {
    position: relative;
}
.about-top-img img {
    width: 100%;
    height: auto;
}
/*
about social
*/
.about-social {
    z-index: 5;
    position: absolute;
    padding-top: 15%;
    padding-left: 60px;
    top: 0;
    cursor: pointer;
}
.about-fm {
    writing-mode: vertical-rl;/*文字を縦にする*/
    text-orientation: mixe;/*文字を縦にする*/
    transform: rotate( -180deg );/*文字を縦にする*/
    text-transform: uppercase;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    font-weight: bold;
    margin: 0;
    color: #fff;
}
.about-social svg {
    width: 31px;
    margin-top: 10px;
    margin-left: -4px;
}
.about-social-hover {
    display: block;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0;
    -webkit-transition:	all 1.5s ease;
	transition:	all 1.5s ease;
}
.about-social:hover .social-hover {
    display: block;
    opacity: 100%;	/* マスクを表示する */
    padding-top: -20px;	/* ホバーで下にずらす */
    color: #fff;
}

.about-top-img img {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
}
.title-about {
    position: absolute;
    display: flex;
    align-items: center;
    color: #ffffff;
    top: 0;
    padding: 24% 0 0 15%;
    margin: 0;
}
.about-en {
    padding: 0;
    margin: 0;
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.about-ja {
    z-index: 100;
    padding: 0;
    margin: 0 0 0 80px;
    margin-bottom: -45px;
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 0.2em;
    font-family:Georgia, 'Times New Roman', Times, serif;
    z-index: 1;
}
/*
about-menu
*/
.about-menu {
    width: 100vw;
    height: 500px;
    position: relative;
    top: 0;
    left: 0;
    background-color: #a5a5a5;
}
.aboutmenu-arr {
    background-color: #a5a5a5;
    width: 100vw;

}
.about-menu ul {
    right: 0;
    text-align: right;
    z-index: 500;
    margin: 0;
    padding: 0;
}
.about-menu li {
    padding-top: 25px;
    height: 100px;
}
.about-menu ul li {
    list-style: none;
    color: #fff;
    height: 30%;
}
.about-menu ul a {
    /* display: inline-block; */
    color: #fff;
    cursor: pointer;
}
.about-menu-en {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    padding-right: 50px;
}
.about-menu-line {
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #fff;
    flex-direction: column;
    padding: 0;
    padding-right: 50px;
    margin: 0;
}
.about-menu-ja {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    display: block;
    padding-right: 50px;
}
/*
concept arr
*/
.concept-arr {
    width: 100%;
    height: 1600px;
    width: 100vw;
    background-color: #4D4B52;
}
.concept-inn {
    width: 960px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 200px;
}
.concept-headline {
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    color: #ccc714;
    font-size: 12rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.concept img {
    width: 600px;
}
.concept-caption-headline {
    color: #fff;
    font-size: 35px;
    line-height: 1.4em;
    letter-spacing: 0em;
    padding: 15px 0 0 200px;
}
.concept-caption-description {
    color: #fff;
    font-size: 1.7rem;
    padding-left: 200px;
    line-height: 2.2em;
    padding-top: -10px;
}
/*
advantage arr
*/
.advantage-arr {
    width: 100%;
    height: 1900px;
    background-color: #a5a5a5;
}
.advantage-inn {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 200px 0 200px 0;
}
.advantage-headline {
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    color: #ccc714;
    font-size: 12rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.advantage img {
    width: 500px;
}
.advantage-caption-headline {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.4em;
    letter-spacing: 0em;
    padding: 15px 0 0 300px;
}
.advantage-caption-description {
    color: #fff;
    font-size: 1.7rem;
    padding-left: 300px;
    line-height: 2.2em;
    padding-top: -10px;

}

/*
reform arr
*/
.reform-arr {
    width: 100%;
    height: 1500px;
    background-color: #4D4B52;
}
.reform-inn {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 200px;
}
.reform-headline {
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    color: #ccc714;
    font-size: 12rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.reform img {
    width: 600px;
}
.reform-caption-headline {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.4em;
    padding: 15px 0 0 200px;
}
.reform-caption-description {
    color: #fff;
    font-size: 1.7rem;
    padding-left: 200px;
    line-height: 2.2em;
    padding-top: -10px;
}
/* about end */



/*

レスポンシブデザイン
(max-width: 480px) //480px以下でスマホ版に変更する

*/

/* index */
@media (max-width: 480px) {



    html {
        font-size: 5px;
    }

/*
index
 */
header {
    margin: 0;
    padding: 0;
}
.showcase {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #07080d;
}
.showcase .logo svg {
    margin: 0;
    padding: 0;
    width: 40px;
    margin-top: -20px;
    margin-left: -24px;
}
.showcase video {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    object-fit:cover;
    object-position: right 35% bottom 0%;
    display: none;
}
.les-mv-img {
    display: block;
    /* position: absolute; */
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    /* background-image: url(/assets/img/Aruki_MvJpg_202212051113.jpg); */
    object-fit: cover;
    object-position: right 70% bottom 0%;
}

.video-text {
    top: 20%;
    left: 42%;
}
.video-text p {
    font-size: 17px;
}
.social {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    padding-left: 20px;
    padding-top: 570px;
    opacity: 20%;
    }
.fm {
        display: none;
    }
.social .social-hover {
    font-size: 1px;
}
.social svg {
    width: 25px;
    margin: 0;
    padding: 0;
}
.social-hover {
    display: block;
    font-size: 0.1rem;
    margin: 0;
    opacity: 0;
    -webkit-transition:	all 1.5s ease;
    transition:	all 1.5s ease;
}
.social:hover .social-hover {
    display: block;
    font-size: 1px;
    opacity: 0%;	/* マスクを表示する */
	padding-top: 0px;	/* ホバーで下にずらす */
}



/*
ナビ toggle
*/
.toggle-btn {
    position: fixed;
    width: 100vw;
    margin: 0;
    margin-top: -10px;
    margin-right: -35px;
    padding: 0;
    width: 30px;
    height: 30px;
    z-index: 1005;
    cursor: pointer;
}
.toggle-btn span {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.s7s;
}
.toggle-btn span:nth-child(1) {
    top: 0px;
    left: 0px;
}
.toggle-btn span:nth-child(2) {
    top: 8px;
    left: 0px;
}
.toggle-btn span:nth-child(3) {
    bottom: 12px;
}
.open .toggle-btn span {
    z-index: 1000;
    width: 50px;
}
.open .toggle-btn span:nth-child(1) {
    transform: translateY(21px) translateX(-110px) rotate(-140deg);
}
.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
    transform: translateY(4px) translateX(-110px) rotate(140deg);
}



/*
navi
*/
.header-nav{
    width: 400px;
    height: 600px;
}
.header-navlist {
    left: 58%;
    top: 100px;
    width: 150px;
}
.header-navlist li {
    padding: 10px;
    margin: 10px 5px;
    height: 80px;
}
.header-navlist li span {
    font-size: 20px;
}

.header-navitem a {
    margin: 10px 5px;
}
.nav-logo {
    display: none;
}
.insta-icon-menu svg {
    display: none;
}





/***
message
***/
    .Message {
        background-color: #a5a5a5;
        height: 830px;
        width: 100vw;
    }
    .message-tex {
        padding-top: 100px;
        width: 72%;
    }
    .message-discription {
        font-size: 11px;
    }
    .message-headline {
        margin-top: 10px;
        font-size: 2.5em;
        font-weight: bold;
    }
    .message-discription {
        line-height: 3.2em;
    }
    .desktop-hidden {
        display: none;
    }
    .message-img img {
        display: none;
    }
.message-tex h1 {
    line-height: 1.8em;
}
.fadeUpTrigger{
    opacity: 1;
}

.fadeUp {
    animation: none;
    transform: none;
    transition: unset;
    }



/***

footer

***/
/* PCボタン非表示にする */
.btn-arr {
    width: 100vw;
    display: block;
    position: relative;
}
    .btn-insta-arr button {
        display: none;
    }
    .btn-ins {
        display: none;
    }
    .btn-contact-arr button {
        display: none;
    }

    footer {
        background-color: #737373;
        width: 100vw;
        height: 580px;
    }
    .footer-arr {
        width: 100vw;
        display: block;
    }

    /* フッター スマホボタン */
    .sp-button-arr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0px;
        padding-top: 100px;
        padding-bottom: 50px;
        width: 200px;
    }
    .bottom-mail-btn svg {
        width: 28px;
    }
    .bottom-insta-icon svg {
        width: 30px;
        display: block;
        opacity: 20%;
    }
    .bottom-mail-btn svg {
        display: block;
    }
    .sp-button-arr a {
        z-index: 1200;
    }

    /*comming soon...*/
.hover-bottom-coso {
    color: rgb(255, 255, 255);
    font-size: 1em;
    z-index: 1;
    -webkit-transition:	all 1.5s ease;
    transition:		all 1.5s ease;
    display: none;
}
/* coso 通常時はホバー時の文字を非表示にする */
.hover-bottom-coso {
    opacity: 0;
}
/* coso ホバー時に、ホバー時の文字を表示する */
.btn-ins a:hover + .hover-bottom-coso {
    display: block;
    opacity: 1;	/* マスクを表示する */
	padding-top: 10px;	/* ホバーで下にずらす */
}

/* フッターアドレス */

    .footer-add-arr {
        display: block;
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    .add-arr {
        width: 200px;
        height: 80px;
        margin: 0;
        margin-left: 20%;
        margin-top: 40px;
        padding: 0;
    }
    .com-add {
        font-size: 4em;
    }
    .com-tel a {
        padding-top: 5px;
        color: #fff;
        text-decoration:none;
    }
    .add-arr p{
        font-size: 14px;
    }

/* 戻るボタン */
    .btn-btt {
        margin: 0;
        padding: 0;
        width: 100vw;
    }
    .btn-btt svg {
        width: 80px;
        height: 80px;
    }
    .btn-btt-up p {
        font-size: 3em;
        margin: 0;
        padding: 0;
        /* padding-top: 50px; */
        /* padding-right: 29px; */
        margin-top: 15%;
        padding-top: 10%;
        margin-left: -18%;
    }
    .btn-btt a {
        z-index: 1500;
    }
    .btn-btt {
        display: none;
    }
    .responsive-btt-arr{
        display: block;
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    .responsive-btt {
        color: #ccc714;
        font-weight: bold;
        padding-left: 20%;
        padding-top: 120px;
    }
    .responsive-btt-underline {
        width: 50px;
        height: 1px;
        display: block;
        background-color: #ccc714;
        margin-top: 5px;
        margin-left: 20%;
        margin-bottom: 110px;
    }
    html{
    scroll-behavior: smooth;
}
.footer-copy {
    width: 100vw;
    padding-left: 20%;
}
/* index end */


/* about start */
.about-top-responsive {
    width: 100%;
    height: 80px;
    background-color: #a5a5a5;
}
.about-top-img img {
    width: auto;
    height: auto;
}
.common-showcase header {
    padding: 0;
    margin: 0;
}
.common-showcase .logo svg {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}
.about-social {
    margin: 0;
    padding: 0;
}
.about-fm {
    display: none;
}
.about-insta-icon svg {
    margin: 0;
    padding: 0;
    width: 25px;
    margin-top: 20px;
    margin-left: 280px;
    opacity: 20%;
}
.social-hover {
    display: block;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0;
    -webkit-transition:	all 1.5s ease;
    transition:	all 1.5s ease;
    display: none;
}
.social:hover .social-hover {
    display: block;
    opacity: 0%;	/* マスクを表示する */
	padding-top: 0px;	/* ホバーで下にずらす */
}



.title-about {
    margin: 0;
    padding: 0;
    margin-top: 150px;
    margin-left: 20px;
    align-items: baseline;
}
.about-en {
    font-size: 3em;
}
.about-ja {
    font-size: 1%;
    font-weight: lighter;
    margin: 0;
    margin-left: 15px;
}
.about-menu {
    display: none;
}
.concept-arr {
    width: 100vw;
    height: 1050px;
}
.concept-inn {
    width: 100vw;
    margin: 0;
    padding: 0;
    padding: 50px 30px 50px;
}
.concept-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 9rem;
}
.concept-caption-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    font-size: 20px;
    width: 160px;
    margin: 15px auto ;
}
.concept-caption-description {
    margin: 0;
    padding: 0;
    width: 250px;
    margin: 0 auto;
    line-height: 2em;
    font-size: 15px;
}
.advantage-arr {
    width: 100vw;
    height: 1110px;
}
.advantage-inn {
    width: 100vw;
    margin: 0;
    padding: 0;
    padding: 50px 30px 50px;
}
.advantage-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 8rem;
}
.advantage img {
    margin: 0;
    padding: 0;
    width: 180px;
    margin: 0 auto;
}
.advantage-caption-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    font-size: 20px;
    margin: 15px auto;
}
.advantage-caption-description {
    margin: 0;
    padding: 0;
    width: 250px;
    margin: 0 auto;
    line-height: 2em;
    font-size: 15px;
}

.reform-arr {
    width: 100vw;
    height: 1000px;
}
.reform-inn {
    width: 100vw;
    margin: 0;
    padding: 0;
    padding: 50px 30px 50px;
}
.reform-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 8rem;
}
.reform img {
    margin: 0;
    padding: 0;
    margin: 0 auto;
}
.reform-caption-headline {
    margin: 0;
    padding: 0;
    padding-top: 20px;
    width: 250px;
    font-size: 20px;
    margin: 15px auto;
}
.reform-caption-description {
    margin: 0;
    padding: 0;
    width: 250px;
    margin: 0 auto;
    line-height: 2em;
    font-size: 15px;
}
/* about end */



/* com-con start */
.com-con-top-responsive {
    width: 100vw;
    height: 80px;
    background-color: #a5a5a5;
}
.com-con-showcase header {
    margin: 0;
    padding: 0;
}
.com-con-showcase .logo svg {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.title-com-con {
    margin: 0;
    padding: 0;
    color: #737373;
    margin-top: 150px;
    align-items: baseline;
    text-align: left;
    margin-left: 50px;
    display: block;
}
.title-com-con p {
    margin: 0;
    padding: 0;
}
.com-con-en {
    font-size: 4em;
    letter-spacing: 0.001em;
}
.com-con-ja {
    letter-spacing: 0.1em;
}
.com-con-social {
    margin: 0;
    padding: 0;
    margin-top: 21px;
    margin-left: 280px;
}
.com-con-fm {
    display: none;
}
.com-con-insta-icon svg{
    margin: 0;
    padding: 0;
    opacity: 20%;
}
.social-hover {
    display: none;
    opacity: 0;
}
/* com-con end */


/* company start */
.company-top-img {
    display: none;
}
.company-arr h1 {
    display: none;
}
.company-arr span {
    display: none;
}
.company-arr {
    width: 100vw;
    height: 1250px;
}
.company-table {
    margin: 0;
    padding: 0;
    margin-top: 250px;
}
.company-table th {
    display: block;
    margin: 0;
    padding: 0;
    margin-left: 70px;
    margin-bottom: 5px;
    font-size: 18px;
}
.company-table td {
    display: block;
    margin: 0;
    padding: 0;
    padding-top: 7px;
    width: 250px;
    margin-left: 70px;
    margin-bottom: 50px;
    font-size: 1rem;
    font-weight: 300;
    font-size: 17px;
}
.tel-number .fax-number {
    color: #fff;
    text-decoration:none;
}

/* company end */



/* contact start */
.contact-top-img {
    display: none;
}
.contact-arr {
    width: 100vw;
    height: 1150px;
}
.contact-att-arr {
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-top: 220px;
}
.contact-att {
    width: 100vw;
    padding: 0px 50px;
    line-height: 2.5em;
    font-size: 15px;
}
.contact-tel {
    display: block;
    margin: 20px auto 30px;
    padding: 0;
    width: 200px;
}
.contact-tel a {
    font-size: 2em;
}
.mail-arr h1{
    margin: 0;
    padding: 0;
    padding-top: 50px;
    margin-left: 70px;
}
.caption-line {
    width: 200px;
    margin-left: 70px;
}
.form-table {
    margin-top: 50px;
}
.form-table th {
    display: block;
    margin: 0;
    padding: 0;
    width: 150px;
    text-align: left;
    margin-bottom: 5px;
    font-size: 10px;
}
.form-table td {
    padding-left: 50px;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
.input[type="text"] {
    width: 260px;
    height: 30px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="email"] {
    width: 260px;
    height: 30px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="tel"] {
    width: 260px;
    height: 30px;
    background-color: #e8e8e8;
    border: none;
}
.input[type="textarea"] {
    width: 260px;
    height: 100px;
    background-color: #e8e8e8;
    border: none;
}
/* contact end */