@charset "UTF-8";

/* 共通部分
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html {
    font-size: 100%;
}

body {
    font-family: "Hiragino Kaku Gothic Pron", "Hiragino sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #403c3c;
}

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

nav.globalMenuSp ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

.navToggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    right: 20px;
    top: 20px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
}

.navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}

.navToggle span:nth-child(1) {
    top: 9px;
}

.navToggle span:nth-child(2) {
    top: 18px;
}

.navToggle span:nth-child(3) {
    top: 27px;
}


/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.logobox{width: 50%;margin: 0 auto;}
.cover {
    background-size: cover;
    background-position: center bottom;
    background-color: #eeefef;
    background-image: url(gazou/bg.png);
    height: 650px;
}

.scroll-block {
    opacity: 0.1;
    transition: all 1.5s;
}

.blockIn {
    transform: translateX(-200px);
}

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

.container img {
    width: 60px;
    /* keyframesの名前 */
    animation-name: img-move;
    /* アニメーションの長さ */
    animation-duration: 0.5s;
    /* アニメーションの繰り返し */
    animation-iteration-count: infinite;
    /* アニメーションの一時停止 */
    animation-play-state: paused;
    /* アニメーションの変化具合 */
    animation-timing-function: ease-in-out;
}

.container img:hover {
    /* アニメーションの再生 */
    animation-play-state: running;
}

/* 参考URL
  https://meet-the-onepiece.com/ */
@keyframes img-move {

    /* 開始時 */
    0% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    80% {
        transform: rotate(4deg);
    }

    /* 終了時 */
    100% {
        transform: rotate(0);
    }
}

.cover-home {
    background-image: url(gazou/bg.png);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.page-header {
    padding-top: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
}

.logo {
    width: 50px;
    margin-right: 3rem;
    margin-top: 2rem;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 5.5rem;
    font-size: 1rem;
    list-style: none;
    margin-top: .8rem;
}

.main-nav a {
    color: #403c3c;
}

.main-nav a:hover {
    color: #97bbd3;
}

.fadeIn {
    opacity: 0;
    transition: 2s;
}

.fadeIn.is-show {
    opacity: 1;
}

/*===========
  .imgBox
  ===========*/

.imgBox {
    text-align: center;
    margin: 50px 0;
}

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

/*===========
  .txtBox
  ===========*/

.txtBox {
    text-align: center;
}

.txtBox p {
    font-size: 60px;
    font-weight: bold;
    padding: 2em 0;
    margin: 0;
}

/*===========
  base
  ===========*/

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    letter-spacing: .025em;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 20px 500px;
    overflow-x: hidden;
}

.section p._a {
    font-size: 12px;
    font-weight: bold;
    margin: 30px 0 0;
}

.section p._a .link {
    display: inline-block;
    color: #607D8B;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.section p._a .link:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #607D8B;
    border-right: 2px solid #607D8B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 10px;
}

/* 見出し */
.font-english {
    font-family: "Philosopher", serif;
    font-weight: normal;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    /* margin-top: 10rem; */
    line-height: 1.4;
    color: #fff;
}

.about {
    font-size: 2rem;
    max-width: 736px;
    padding: 0.1.5rem;
    margin: 3rem auto 4rem;
}

.about h3 {
    position: relative;
}

.about h3::after {
    content: "-Tamashiro Tomoka";
    font-size: 1rem;
    margin-left: 0.5rem;
    padding-bottom: 0.5rem;
    position: absolute;
    top: 34%;
    width: 100%;
}

h3.heading-large {
    position: relative;
}

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

.about-wrap-text {
    /* width: 450px; */
}

.about p {
    font-size: .9rem;
}

.about-p {
    position: relative;
}

.view-btn {
    padding: 10px;
    border-bottom: #403c3c 1px solid;
    display: inline-block;
    position: absolute;
    right: 0;
}

.about img {
    max-width: 240px;
    margin-right: 2px;
    margin-top: 1rem;
}

.about-page .prof {
    display: flex;
    /* align-items: flex-start;
    max-width: 1120px; */
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
    margin-top: 100px;
}

.about-page .img {
    max-width: 300px;
    margin: 3rem 3rem 3rem 0;
}

.works {
    content: "-skill";
    font-size: 2rem;
    max-width: 736px;
    padding: 0.1.5rem;
    margin: 3rem auto 4rem;
}

.works h3::after {
    content: "-Collection";
    position: absolute;
    font-size: 1rem;
    margin-left: 0.5rem;
    padding-bottom: 0.5rem;
    top: 34%;
    width: 100%;
}

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

.item {
    padding: 30px;
    width: 32%;
    background-color: #fff;
}

.works p {
    margin-bottom: 1rem;
    font-size: .9rem;
}

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

.works img {
    max-width: 240px;
    width: 100%;
    margin-right: 2px;
    margin-top: 1rem;
}
.flexbox-center{
    align-items: flex-center;
    /*中央に整列*/}

/* .swiper {
    width: 600px;
    position: relative;
  }
.swiper1 {
    width: 600px;
  }
.swiper-slide video{
    max-width: 800px;
    max-height: 875px;
    overflow: hidden;
    margin: 55px;
} */
/* .swiper-movie{
    margin: 15rem;
}
*/
.contact {
    font-size: 1rem;
    padding: 0.1.5rem;
    justify-content: center;
    text-align: center;
} 
.contact-p {
    justify-content: center;
    margin-top: 240px;
    display: flex;
    justify-content: center;
}

.contact-image {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.contact-image input {
    width: 150px;
    padding: 20px;
}

.page-title input {
    text-align: center;
}

.btn {
    display: inline-block;
    font-size: 1rem;
    background-color: #403c3c;
    color: #97bbd3;
    border-radius: 8px;
    padding: .25px .5rem;
}

.btn:hover {
    background-color: #796393;
}

/* 上に戻るボタン */
.pagetop {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    width: 3.3rem;
    height: 3.3rem;
    line-height: 3.3rem;
    border-radius: 3.3rem;
    text-align: center;
    cursor: pointer;
}

.pagetop:hover {
    color: #fff !important;
    background-color: #97bbd3;
    text-decoration: none;
}

.copyright {
    background-color: #70608f;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    color: #97bbd3;
}
@media(min-width:768px) {
.swiper-slide{width: 20% !important;margin: 1%;}
}
  
@media(max-width:767px) {

    /* ここからスマホ */
    .item {
        width: 100%;
    }

    .item:not(:last-child) {
        margin-bottom: 30px;
    }

    .cover-home {
        height: 50vw;
    }

    .cover {
        background-size: cover;
        /* background-position: center bottom; */
        
        /* height: 450px; */
    }

    .about-page .prof,.about-wrap {
        display: block;
    }

    .about img,.works img {
        max-width: 50% !important;
        display: block !important;
        margin: 0 auto !important;}

.about-page .img{
    max-width: 60%;
    display: block;
    margin: 0 auto;}

    .about p {
        /* font-size: 1.5rem; */
    }

   .prof p{padding: 1rem;
    font-size: 132%;;}

    .works-wrap {
        display: block;
        justify-content: space-between;
    }

    .contact-p {
        justify-content: center;
        margin-top: 132px;
        display: flex;
        justify-content: center;
    }
    .cover {
        background-size: cover;
        background-position: center bottom;
        background-color: #eeefef;
        
        /* height: 300px; */
    }


    .page-title {
        font-size: 1rem;
        text-align: center;
        margin-top: 2rem;
        line-height: 1.4;
    }
    .page-header {
        padding-top: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        

    }
    .page-header h1{
        margin: 0;
        padding: 0;
    }
    .about-wrap ,.works-wrap{
        padding: 0 20px;
    }
    .flexbox{
        display: flex;
        justify-content: center;
      }
      .flexbox::after{
        content:"";
    display: block;
    width:49%;
      }
      .swiper-slide{width: 40% !important;margin: 1%;}

    .image-box{width: 45% !important;margin: 2%;}

    /* ここまでスマホ */
}

/* }消さない */


.swiper-container {
    width: 100%;
    height: 370px;
  }
  

  .swiper-button-next, .swiper-button-prev{
    color: #9ebad1 !important;
  }

  .flexbox{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .image-box{width: 28%;margin: 2%;}

  input[type="text"],input[type="mail"]{
    width: 80%;
    height: 30px;
  }
  form{width: 90%;margin: 0 auto;}


  video{width: 100%;}
  /* .wrappe_mbr{width: 767px;} */


