@charset "utf-8";

/* common */

html {
    margin: 0 auto;
    font-size: 62.5%;
    /* 16px * 62.5%=10px */
    width: 100%;
    box-sizing: border-box;
    max-width: 1440px;
}

body {
    color: #fff;
    background-color: #000;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
}

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

a {
    text-decoration: none;
    cursor: pointer;
}

h1 {
    font-size: 4.6vw;
    font-family: 'Londrina Solid';
    letter-spacing: 0.05em;
}

h2 {
    font-family: 'Londrina Solid';
    font-size: 4.6rem;
    letter-spacing: 0.05em;
}
.shutter{
    width: 100%;
    height: 100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: auto;
    background-color:#000;
    z-index:99;
    -webkit-animation: byeShutter 2.4s forwards;
    animation: byeShutter 2.4s forwards;
  }
  .opening-logo {
    position: absolute;
    width: 120px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: logo 0.8s forwards;
    animation: logo 0.8s forwards;
    animation-delay: 0.2s;
  }
  @keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
  }
  @keyframes logo {
  0% {
    opacity: 1;
  }
    
  50% {
    transform: rotate(0deg);     
  }
    100% {
    transform: scale(0.8);
    }
  }

@media screen and (min-width:1440px) {
    h1 {
        font-size: 7rem;
    }
}

@media screen and (max-width:960px) {
    h2 {
        font-size: 3rem;
    }
}

h3 {
    font-family: 'Londrina Solid';
    font-size: 4rem;
    letter-spacing: 0.02em;
}

section {
    margin-bottom: 120px;
}

@media screen and (max-width:560px) {
    section {
        margin-bottom: 60px;
    }
}


/* ボタンエフェクト */

.btn {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    width: 130px;
    height: 45px;
    text-align: center;
    line-height: 2.4;
    border: 2px solid #fff;
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: .3s;
}

.btn::before,
.btn::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    transition: transform ease .3s;
}

.btn::before {
    right: -60px;
    border-right: 60px solid transparent;
    border-bottom: 60px solid #fff;
    transform: translateX(-100%);
}

.btn::after {
    left: -60px;
    border-left: 60px solid transparent;
    border-top: 60px solid #fff;
    transform: translateX(100%);
}

.btn:hover {
    color: #333;
}

.btn:hover:hover::before {
    transform: translateX(-49%);
}

.btn:hover::after {
    transform: translateX(49%);
}


/*　ハンバーガーボタン　*/

.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 30px;
    top: 30px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}


/* ナビ開いてる時のボタン */

.hamburger.active {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    opacity: 0;
}

.hamburger-wrapper {
    background-color: #F76A1E;
    height: 100vh;
}

.globalMenuSp {
    position: relative;
}

.nav-img {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 410px;
}

nav div {
    color: #c4c4c4;
    font-size: 1.8rem;
    line-height: 1.5;
    font-family: Poppins;
}

.nav-discribe {
    position: absolute;
    top: 30%;
    right: 13%;
    z-index:10;
}

.nav-discribe a {
    color: #c4c4c4;
}

.nav-sns a::before {
    content: url(../img/insta-icon.png);
    vertical-align: middle;
    padding: 2px;
    font-size: 1rem;
}
.nav-sns a:hover{
    opacity:0.5;
}

.nav-gm a::before {
    content: url(../img/location.png);
    vertical-align: middle;
    padding: 7px;
    font-size: 1rem;
}
.nav-gm a:hover{
    opacity:0.5;
}

nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 80%;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 20px 0 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    margin-left: 120px;
}

nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: inline-block;
    font-family: 'Londrina Solid';
    font-size: 3rem;
    color: #fff;
    padding: 1em 0;
}

nav.globalMenuSp ul li a:hover {
    color: #262626;
    transition: 1s;
}

@media screen and (max-width:1024px) {
    nav.globalMenuSp {
        width: 100%;
        height: 100vh;
    }
    nav.globalMenuSp ul li a {
        padding:0.8em 0;
    }
}

@media screen and (max-width:768px) {
    .hamburger {
        top: 15px;
        right: 15px;
    }
    .nav-img {
        width: 250px;
    }
    nav.globalMenuSp ul li {
        margin-left: 0;
        text-align: center;
    }
    .nav-discribe {
        top: unset;
        left: 5%;
        bottom: 10%;
    }
    nav.globalMenuSp ul li a {
        padding: 0.3em 0;
    }
}

@media screen and (max-width:530px) {
    .nav-discribe {
        display: none;
    }
}


/* このクラスを、jQueryで付与・削除する */

nav.globalMenuSp.active {
    transform: translateX(0%);
}


/*mv*/

.logo {
    width: 90px;
}

.logo-top_wrapper {
    text-align: center;
    padding: 10px;
}

.top-mv {
    position: relative;
    max-width: 1440px;
    width: 100vw;
    height: 100%;
}

.mv-video {
    padding: 0 20px;
    width: 55%;
    margin: 30px;
}

.top-mv h1 {
    position: absolute;
    top: 25%;
    right: 13%;
}

.top-mv_item {
    font-family: 'Londrina Solid';
    letter-spacing: 0.05em;
    background-image: url(../img/fire.gif);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2rem;
    position: absolute;
    bottom: 0%;
    right: 8%;
    text-align: center;
    line-height: 2.2;
}

.top-mv_item img {
    width: 70vw;
}
dialog {
    width: 80%;
    font-size:1.6rem;
    padding: 2rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .news{
    width: 100px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: inline-box;
    padding:8px;
    margin-bottom: 5px;
    background-color: #e63946;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
    overflow:hidden;
    animation:glow 2.5s infinite alternate ease-in-out;
  }
  @keyframes glow{
    0%{
        box-shadow:  0 0 5px rgba(230,57,70,0.7), 0 0 10px rgba(230,57,70,0.3);
    }
    100%{
        box-shadow: 0 0 15px rgba(230,57,70,0.9), 0 0 25px rgba(230,57,70,0.5);
    }
  }

  /* モーダルの背面（オーバーレイ） */
  dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }
@media all and (min-width:900px) and (max-width:1040px) {
    .top-mv_item {
        font-size: 2.2rem;
        line-height: 1.7;
        right: 1%;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width:899px) {
    .mv-video {
        text-align: center;
        width: auto;
        padding: 0;
    }
    .logo {
        width: 80px;
    }
    .top-mv_item {
        position: initial;
        font-size: 2.4rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 65px;
    }
}


/* top-about */

.top-about {
    position: relative;
    max-width: 1440px;
    background-image: url(../img/bg-text-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.top-about_item {
    display: flex;
    justify-content: space-around;
}

.top-about_list .btn {
    margin: 100px 0 0 auto;
}

.top-about_list {
    width: 50%;
}

.top-about_list p {
    margin-top: 40px;
    line-height: 2;
}

.top-about_text {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-left: 30px;
}

.top-about_text p {
    width: 730px;
    line-height: 2;
    padding-top: 30px;
}

.flag-wrapper {
    position: absolute;
    bottom: -9%;
    right: 5%;
    width: 250px;
}

.flag-wrapper img {
    opacity: 0.8;
}

@media screen and (max-width:1023px) {
    .flag-wrapper img {
        display: none;
    }
    .top-about_text {
        display: block;
    }
}

@media screen and (max-width:960px) {
    .about-img_wrapper {
        width: 70%;
    }
    .top-about_list {
        padding: 20px;
    }
    .top-about_text {
        padding: 20px;
        margin-top: 0;
    }
    .top-about_list p {
        margin-top: 20px;
        line-height: 1.8;
    }
}

@media screen and ( max-width:830px) {
    .top-about_item {
        display: block;
    }
    .top-about {
        padding: 10px;
        background-position: 0 290px;
    }
    .about-img_wrapper {
        width: auto;
    }
    .top-about_list {
        width: auto;
    }
    .top-about_list .btn {
        margin: 50px auto;
    }
    .top-about_text p {
        width: auto;
        line-height: 2;
        margin-top: 30px;
    }
}

@media screen and (max-width:560px) {
    .top-about {
        padding: 10px;
    }
    .top-about h2 {
        font-size: 2.8rem;
    }
    .about-img_wrapper {
        width: auto;
    }
    .top-about_list {
        width: auto;
    }
    .top-about_list .btn {
        margin: 50px auto;
    }
    .top-about_text p {
        width: auto;
        line-height: 2;
        margin-top: 30px;
    }
    h3 {
        font-size: 2.8rem;
    }
}


/* top-menu */


/* fadeUp */

.js-fadeUp {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(40px);
    /* 下に40pxの位置から */
    transition: opacity .8s, transform .8s;
    /* 透過率と縦方向の移動を0.8秒 */
}


/* フェードイン(スクロールした後) */

.js-fadeUp.is-inview {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0);
    /* 30px上に移動する */
}

.js-fadeUp.is-inview:nth-child(1) {
    transition-delay: .2s;
    /* フェード開始を0.2秒遅らせる */
}

.js-fadeUp.is-inview:nth-child(2) {
    transition-delay: .4s;
}

.js-fadeUp.is-inview:nth-child(3) {
    transition-delay: .5s;
}

.js-fadeUp.is-inview:nth-child(4) {
    transition-delay: .6s;
}

.js-fadeUp.is-inview:nth-child(5) {
    transition-delay: .7s;
}

.js-fadeUp.is-inview:nth-child(6) {
    transition-delay: .8s;
}

.menu-container h2 {
    text-align: center;
    padding-bottom: 80px;
}

.menu-container {
    width: calc(100% - 300px);
    max-width: 1440px;
    position: static;
    margin-right: auto;
    margin-left: auto;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.menu-item {
    position: relative;
    margin: 0 auto 60px 0;
    width: calc(33.333% - 60px);
}

.menu-img_wrapper {
    text-align: center;
    transition-duration: 0.3s;
}

.menu-img_wrapper:hover {
    transform: scale(1.03);
    transition-duration: 0.3s;
}

.menu-item__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 0 8px;
    border-bottom: 1px solid;
}

.menu-en {
    position: absolute;
    top: 0;
    left: 100%;
    right: auto;
    margin: auto;
    writing-mode: rl-tb;
    writing-mode: vertical-lr;
    box-sizing: border-box;
}

@media all and (min-width:560px) and (max-width:1024px) {
    .menu-list {
        justify-content: space-around;
    }
    .menu-item {
        width: calc(40% - 30px);
        margin: 0 0 70px;
    }
}

@media screen and (max-width:768px) {
    .menu-container {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width:560px) {
    .menu-container {
        width: calc(100% - 60px);
    }
    .menu-item {
        width: calc(100% - 30px);
    }
    .menu-list {
        margin-bottom: 0;
    }
    .menu-list .menu-item p img {
        width: 100%;
    }
}


/* insta */

.sns-item {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0;
    margin: 0 90px;
}

.sns-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.sns-list h2 {
    padding-bottom: 45px;
}

.sns-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
}

.sns-list a:hover {
    color: #ea743e;
    transition: 1s;
}

.insta-wrapper {
    display: block;
}

.fa-instagram:before {
    content: "\f16d";
    padding-right: 10px;
    font-size: 3.2rem;
}

.fa-instagram {
    background: -webkit-radial-gradient(32% 106%, circle farthest-corner, #ffe17d 0%, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), -webkit-linear-gradient( -45deg, #234bd7 12%, #c33cbe 58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-wrapper_sns {
    width: 20%;
}

.insta-show {
    border: solid 3px #fff;
}

.sns-list p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 0.02em;
    font-size: 1.8rem;
}

.colour-text {
    padding: 10px 0;
    margin: 0;
    font-size: 80px;
    font-weight: bold;
    background-image: linear-gradient( 70deg, #fff 45%, /* font color */
    #d89b19 50%, #fff 55%/* font color */
    );
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 3s infinite;
}

.slider {
    display: none;
}

.slider.slick-initialized {
    display: block;
}

.slider-reverse {
    display: none;
}

.slider-reverse.slick-initialized {
    display: block;
}

@keyframes shine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@media screen and (min-width:1040px) {
    .anime {
        animation: rotate-y 4s infinite;
        -webkit-animation: rotate-y 4s infinite;
    }
    
    @keyframes rotate-y {
        0% {
            transform: rotateY(0deg);
        }
        100% {
            transform: rotateY(360deg);
        }
    }
}

@media screen and ( max-width:769px) {
    .sns-item {
        display: block;
        margin: 0;
    }
    .logo-wrapper_sns {
        margin: 0 auto;
        width: 20%;
    }
    .sns-list {
        height: 260px;
    }
}


/* access */

.access {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    padding: 0 30px;
    box-sizing: border-box;
}

.map-wrapper {
    width: 400px;
    height: auto;
}
.map-wrapper img:hover{
transition-duration:0.8s;
transform: scale(1.02);
}

.top-access h2 {
    text-align: center;
    padding-bottom: 80px;
}

.access .btn {
    position: absolute;
    bottom: 15%;
    right: 10%;
}


/* タブ */

#wrap {
    padding-top: 60px;
    color: #fff;
    background-color: #000;
    width: 400px;
    margin-top: 10px;
}

.tab {
    height: 40px;
    width: 100px;
    border-bottom: 4px solid black;
    line-height: 40px;
    text-align: center;
    font-size: 2rem;
    float: left;
    cursor: pointer;
}

.selected {
    border-bottom: solid 2px #9b4747;
    background-color: black;
    color: white;
}

#container {
    position: relative;
    width: 400px;
    height: 230px;
    overflow: hidden;
    clear: left;
}

.box {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    width: 400px;
    height: 230px;
    text-align: left;
    font-size: 1.8rem;
    padding: 10px 20px;
}

.add-main {
    font-size: 2rem;
    line-height: 1.5;
}

.add-sub {
    display: inline-block;
    padding-top: 10px;
    line-height: 1.5;
}

#first {
    top: 0px;
    left: 0px;
}

#second {
    top: 0px;
    left: 400px;
}

#slide {
    transition: transform 1s ease-in-out 0s;
    -moz-transition: -moz-transform 1s ease-in-out 0s;
    -webkit-transition: -webkit-transform 1s ease-in-out 0s;
}

.move-to-second {
    transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -webkit-transform: translateX(-400px);
}

.move-to-first {
    transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

@media screen and (max-width:960px) {
    #wrap {
        padding-top: 0;
        padding-left: 20px;
    }
    .access .btn {
        position: absolute;
        bottom: 6%;
        right: 32%;
    }
    .add-main {
        font-size: 1.8rem
    }
    .add-sub {
        font-size: 1.6rem;
    }
}

@media screen and ( max-width:768px) {
    .access {
        display: block;
    }
    .map-wrapper {
        width: 65%;
        margin: 0 auto;
    }
    #container {
        width: auto;
    }
    .box {
        width: auto;
        padding: 0;
        padding-top: 10px;
    }
    #wrap {
        width: 350px;
        margin: 30px auto;
        box-sizing: border-box;
    }
    .add-main {
        font-size: 1.7rem;
    }
    .add-sub {
        font-size: 1.6rem;
    }
    .access .btn {
        bottom: -8%;
        right: 10%;
    }
}


/*   footer */

footer {
    background-image: url(../img/bg-text-right.png);
    background-repeat: no-repeat;
}

.footer-inner {
    padding: 100px 8% 0;
}

.footer-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 95px;
    border-bottom: solid 1px #909090;
}

footer nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    flex-flow: nowrap;
}

footer nav a {
    font-family: 'Londrina Solid';
    color: #fff;
    font-size: 3.2rem;
    letter-spacing: 0.01em;
    display: block;
    padding: 20px 10px;
    position: relative;
    top: 10px;
}

footer nav a:hover {
    color: #535353;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1)
}

.footer-sns {
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;
}

.footer-sns_item {
    color: #909090;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-fire {
    width: 200px;
    height: auto;
    margin: 70px 0 0 auto;
}

.footer-copy {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    color: #909090;
}

@media screen and (max-width:700px) {
    footer {
        background-size: contain;
    }
    .footer-inner {
        padding: 0;
    }
    footer nav {
        display: none;
    }
    footer .logo {
        width: 100px;
    }
    .footer-item {
        padding-bottom: 0;
        border-bottom: none;
        padding: 90px 0;
    }
    .footer-sns {
        justify-content: center;
        padding-top: 0;
    }
    .footer-fire {
        width: 180px;
        margin: 90px auto;
    }
}


/* about page */

.about-mv {
    position: relative;
    background-image: url(../img/about-mv.png);
    height: 400px;
    background-size: 110%;   
    background-position: center top; 
    background-repeat: no-repeat;
}

.about-mv h1 {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-top {
    margin: 40px 60px;
    padding: 140px 0;
    background-image: url(../img/bg-text-left.png);
    background-repeat: no-repeat;
    background-position: right;
}

.about-top p {
    padding-top: 80px;
    font-size: 1.8rem;
    width: 90%;
    margin: 0 auto;
    line-height: 2.2;
}

@media screen and (max-width:768px) {
    .about-top {
        margin: 60px 0;
        padding: 0 20px;
        background-size: contain;
    }
    .about-mv{
        height: 200px;
        background-size: 180%;
    }
    .about-mv h1 {
        font-size: 3.2rem;
    }
    .about-top p {
        font-size: 1.6rem;
        width: 100%;
    }
}

.scroll-background1 {
    background-image: url(../img/img13.JPG);
    height: 500px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center top;
}

.scroll-background2 {
    background-image: url(../img/img04.JPG);
    height: 500px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center top;
}

.scroll-background3 {
    background-image: url(../img/img15.jpeg);
    height: 500px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center top;
}

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

    .scroll-background1,
    .scroll-background2,
    .scroll-background3 {
        height: 200px;
        background-size: 160%;
    }
}
/* process */

.about-process {
    margin: 60px;
}

.about-process h2 {
    padding-bottom: 60px;
}

.about-process ul {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

.about-process ul li {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-right: 2.9em;
}
.about-process ul li p{
    width: 80%;
    margin: 0 auto;
}

.about-process ul li:last-of-type {
    margin-right: 0;
}

.about-process ul li p {
    text-align: center;
}

.step-numero {
    font-family: lopping;
    font-size: 2.2rem;
    font-weight: 800;
    padding: 20px 0;
}

.slick {
    display: none;
}

.slick-slide {
    position: relative;
}

@media screen and (max-width:768px) {
    .slick {
        display: none;
    }
    .slick.slick-initialized {
        display: block;
        padding: 60px 0px;
    }
    .slick img {
        margin: 0 auto;
        transition-delay: 0.5s;
    }
    .step-wrapper {
        display: none;
    }
    .about-process ul {
        display: none;
    }
    .about-process {
        padding: 0 20px;
        margin: 60px 0;
    }
    .about-process h2 {
        padding: 0;
        margin: 0;
    }
}


/* biography */

.about-biography {
    margin: 60px;
}

.biography-wrapper {
    padding: 30px 0;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}
.biography-wrapper_sp{
    display: none;
}

@media screen and (max-width:768px) {
    .about-biography {
        margin: 60px 0;
        padding: 0 20px;
    }
    .biography-wrapper {
        display: none;
    }
    .biography-wrapper_sp{
        text-align: center;
        padding: 40px 0;
        display: block;
    }
}
/* msg */

.about-top h2 span {
    font-weight: 900;
}

.about-msg {
    position: relative;
    margin: 60px;
}

.msg-wrapper {
    padding-top: 50px;
    display: flex;
    justify-content: space-evenly;
}

.msg-item {
    display: flex;
    width: 50%;
    line-height: 2.3;
    align-items: center;
    font-size: 1.7rem;
}

.owner-autogragh {
    position: absolute;
    bottom: -5%;
    right: 1%;
    width: 190px;
}

@media screen and (max-width:1040px) {
    .msg-wrapper {
        display: block;
    }
    .owner-portrait {
        text-align: center;
    }
    .msg-item {
        width: 100%;
        padding-top: 40px;
    }
    .owner-autogragh {
        bottom: -15%;
    }
}

@media screen and (max-width:768px) {
    .about-msg {
        margin: 60px 0;
        padding: 0 20px;
    }
}

@media screen and (max-width:560px) {
    .owner-autogragh {
        bottom: -10.5%;
        width: 150px;
    }
}
/* contact page */

.contact-mv {
    position: relative;
    background-image: url(../img/contqct-mv.png);
    height: 400px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center top;
}

.contact-mv h1 {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width:768px) {
    .contact-mv{
        height: 200px;
        background-size: 180%;
    }
    .contact-mv h1 {
        font-size: 3.2rem;
    }
}
.thanks{
    margin: 40px 0 ;
}
.thanks h1{
    font-size:3rem;
    text-align: center;
    }
.thanks p{
    text-align: center;
    line-height: 2;
    font-size:2rem;
    width: 80%;
    margin: 0 auto;
}
.thanks div{
    margin: 30px 0;
}
.thanks .btn{
    margin: 0 auto;
}
.check{
    font-size:4rem !important;
}

