@charset "UTF-8";

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {


  /* PCcss */

  /* font-family: 'Montserrat', sans-serif; */
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  /* font-family: 'Shippori Mincho', serif; */
  /* font-family: 'Work Sans', sans-serif; */

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #f6f3ee;
    min-width: 1000px;
  }

  .container {
    width: 100%;
  }

  .spheader {
    display: none;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  .header {
    width: 100%;
    background-image: url(../img/other_top.jpg);
    background-size: 100%;
    background-position: right 0px bottom 0px;
    background-repeat: none;
    height: 650px;
  }

  

  /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
  .header {
    /* じわっと画像が表示される */
    animation: fadeIn 2.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
  }

  /* じわっと画像が表示される */
  @keyframes fadeIn {

    /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {
      opacity: 0
    }

    /* 始め */
    100% {
      opacity: 1
    }

    /* 終わり */
  }


  .menu {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.35);
    position: fixed;
    font-size: 20px;
    transition: 1.3s;
    z-index: 1000;
  }

  .menu1 {
    width: 35%;
    margin-left: 7.5%;
  }

  .menu1 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
  }

  .menu2 {
    width: 15%;
  }

  .menu2 img {
    width: 100%;
  }

  .menu3 {
    width: 35%;
    margin-right: 7.5%;
  }

  .menu3 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
  }

  /* メニューバーが小さくなる */
  .small {
    height: 60px;
    backdrop-filter: blur(6px);
  }

  .smalllogo {
    height: 100%;
    width: 100%;
  }

  .smallmenu2 {
    height: 75px;
    width: 75px;
  }

  /* ホバーでアンダーライン */
  /* https://hakenblog.com/css-hover-underline-animation/ */
  .menu1 a {
    position: relative;
    /*アンダーラインの位置を決めるための基準 */
  }

  .menu1 a::after {
    position: absolute;
    /*親要素であるaタグを基準に位置を指定*/
    left: 0;
    /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';
    /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;
    /*アンダーラインを各aタグの幅に合わせる*/
    height: 1px;
    /*アンダーラインの高さ（太さ）*/
    background: #000000;
    /*アンダーラインの色*/
  }

  .menu1 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.4s;
    /*変形の時間*/
  }

  .menu1 a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }

  .menu3 a {
    position: relative;
    /*アンダーラインの位置を決めるための基準 */
  }

  .menu3 a::after {
    position: absolute;
    /*親要素であるaタグを基準に位置を指定*/
    left: 0;
    /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';
    /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;
    /*アンダーラインを各aタグの幅に合わせる*/
    height: 1px;
    /*アンダーラインの高さ（太さ）*/
    background: #000000;
    /*アンダーラインの色*/
  }

  .menu3 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.4s;
    /*変形の時間*/
  }

  .menu3 a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }



  .top {
    width: 80%;
    margin: 250px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top1 {
    width: 45%;
  }

  .top img {
    width: 90%;
  }

  .top2 {
    width: 45%;
    font-family: 'Shippori Mincho', serif;
    font-size: 32px;
    letter-spacing: 10px;
    line-height: 60px;
  }

  .my {
    font-size: 56px;
    color: red;
  }

  /* スクロールでふわっと */
  .top2 {
    opacity: 0;
    transform: translateY(-20px);
    transition: 3s ease;
  }

  .about {
    width: 80%;
    height: 550px;
    margin: 250px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about1 {
    width: 45%;
    height: 550px;
    display: flex;
    flex-direction: column;
  }

  .aboutp {
    height: 400px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 5px;
    line-height: 40px;
  }

  /* ボタンアクション */
  .aboutbtn {
    height: 50px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
  }

  .btn--about,
  a.btn--about {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 50px;
  }

  .btn--about:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--about {
    border-radius: 100vh;
  }

  /* 流れる文字 */
  .bbs {
    align-items: center;
    color: #000000;
    display: flex;
    height: 100px;
    line-height: 100px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
  }

  .bbs ul {
    animation: flowing 40s linear infinite;
    font-family: 'Work Sans', sans-serif;
    font-size: 100px;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
  }

  .bbs ul li {
    display: inline-block;
    padding-right: 10px;
  }

  @keyframes flowing {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .about2 {
    width: 15%;
    padding-left: 45px;
  }

  .about2 h2 {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 30px;
  }

  .eigoabout {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
  }

  .about3 {
    width: 40%;
  }

  .about3 img {
    object-fit: cover;
    width: 430px;
    height: 550px;
  }

  /* スクロールでふわっと */
  .about {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

  .portfolio {
    width: 80%;
    height: 500px;
    margin: 250px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .portfolio1 {
    width: 40%;
  }

  .portfolio1 img {
    object-fit: cover;
    width: 380px;
    height: 500px;
  }

  .portfolio2 {
    width: 10%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 50px;
  }

  .eigoportfolio {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
  }

  .portfolio2 h2 {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 32px;
  }

  .portfolio3 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
  }

  .portfoliop {
    height: 300px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 5px;
    line-height: 40px;
  }

  .portfoliobtn {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
  }

  .btn--portfolio,
  a.btn--portfolio {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 50px;
  }

  .btn--portfolio:hover,
  a.btn--portfolio:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--portfolio {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .portfolio {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

  .travel {
    width: 100%;
    height: 550px;
    margin: 0 auto;
    padding: 50px 0 100px 0;
    background-image: url(../img/top_9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
  }

  .travel h2 {
    margin-left: 40px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 30px;
  }

  .eigotravel {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
  }

  .travelcontents {
    width: 90%;
    margin: 20px auto;
  }

  /* 横スクロール */
  /* https://kouhekikyozou.com/css_horizontal_scroll */
  .travel1 {
    width: 100%;
    margin-top: 20px;
    overflow-x: scroll;
  }

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

  .travel1 img {
    object-fit: cover;
    height: 250px;
    margin: 5px;
    flex-shrink: 0;
  }

  .travel1::-webkit-scrollbar {
    height: 14px;
    /* スクロールバーの高さ */
  }

  .travel1::-webkit-scrollbar-thumb {
    background: #B2B1B9;
    /* ツマミの色 */
    border-radius: 7px;
    /* ツマミ両端の丸み */
  }

  .travel1::-webkit-scrollbar-track {
    background: #EDEDED;
    /* トラックの色 */
    border-radius: 7px;
    /* トラック両端の丸み */
  }

  /* ホバーアクション */
  /* https://pengi-n.co.jp/blog/horizontal-slideshow/ */
  .travel1 img {
    transition: all 0.2s;
  }

  .travel1 img:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    /* opacity: 0.8; */
    cursor: pointer;
  }

  .travelbtn {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-align: center;
  }

  .btn--travel,
  a.btn--travel {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 50px;
  }

  .btn--travel:hover,
  a.btn--travel:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--travel {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .travel {
    opacity: 0;
    transform: translateY(-20px);
    transition: 3s ease;
  }

  .contact {
    width: 75%;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact1 {
    width: 25%;
  }

  .contact1 img {
    width: 80%;
  }

  .contact2 {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .contact2 h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
  }

  .eigocontact {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
  }

  .contact2 p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    line-height: 25px;
  }

  .contacth2,
  p {
    height: 100px;
  }


  .contactbtn {
    margin: 0 auto;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
  }

  .btn--contact,
  a.btn--contact {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 50px;
  }

  .btn--contact:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--contact {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .contact {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

}


/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
  body {
    min-width: 600px;
    max-width: 999px;
    background-color: #f6f3ee;
  }

  .container {
    width: 100%;
  }

  .spheader {
    display: none;
  }

  html {
    scroll-behavior: smooth;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  .header {
    width: 100%;
    background-image: url(../img/other_top.jpg);
    background-size: 100%;
    background-repeat: none;
    height: 450px;
  }

  /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
  .header {
    /* じわっと画像が表示される */
    animation: fadeIn 2.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
  }

  /* じわっと画像が表示される */
  @keyframes fadeIn {

    /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {
      opacity: 0
    }

    /* 始め */
    100% {
      opacity: 1
    }

    /* 終わり */
  }


  .menu {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.35);
    position: fixed;
    font-size: 20px;
    transition: 1.3s;
    z-index: 1000;
  }

  .menu1 {
    width: 35%;
    margin-left: 7.5%;
  }

  .menu1 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
  }

  .menu2 {
    width: 15%;
  }

  .menu2 img {
    width: 100%;
  }

  .menu3 {
    width: 35%;
    margin-right: 7.5%;
  }

  .menu3 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
  }

  /* メニューバーが小さくなる */
  .small {
    height: 60px;
    backdrop-filter: blur(6px);
  }

  .smalllogo {
    height: 100%;
    width: 100%;
  }

  .smallmenu2 {
    height: 75px;
    width: 75px;
  }

  /* ホバーでアンダーライン */
  /* https://hakenblog.com/css-hover-underline-animation/ */
  .menu1 a {
    position: relative;
    /*アンダーラインの位置を決めるための基準 */
  }

  .menu1 a::after {
    position: absolute;
    /*親要素であるaタグを基準に位置を指定*/
    left: 0;
    /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';
    /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;
    /*アンダーラインを各aタグの幅に合わせる*/
    height: 1px;
    /*アンダーラインの高さ（太さ）*/
    background: #000000;
    /*アンダーラインの色*/
  }

  .menu1 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.4s;
    /*変形の時間*/
  }

  .menu1 a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }

  .menu3 a {
    position: relative;
    /*アンダーラインの位置を決めるための基準 */
  }

  .menu3 a::after {
    position: absolute;
    /*親要素であるaタグを基準に位置を指定*/
    left: 0;
    /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';
    /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;
    /*アンダーラインを各aタグの幅に合わせる*/
    height: 1px;
    /*アンダーラインの高さ（太さ）*/
    background: #000000;
    /*アンダーラインの色*/
  }

  .menu3 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.4s;
    /*変形の時間*/
  }

  .menu3 a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }



  .top {
    width: 80%;
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top1 {
    width: 60%;
  }

  .top img {
    width: 90%;
  }

  .top2 {
    width: 50%;
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 60px;
  }

  .my {
    font-size: 40px;
    color: red;
  }

  /* スクロールでふわっと */
  .top2 {
    opacity: 0;
    transform: translateY(-20px);
    transition: 3s ease;
  }

  .about {
    width: 80%;
    height: 550px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about1 {
    width: 60%;
    height: 450px;
    display: flex;
    flex-direction: column;
  }

  .aboutp {
    height: 300px;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 4px;
    line-height: 25px;
  }

  /* ボタンアクション */
  .aboutbtn {
    height: 50px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }

  .btn--about,
  a.btn--about {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--about:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--about {
    border-radius: 100vh;
  }

  /* 流れる文字 */
  .bbs {
    align-items: center;
    color: #000000;
    display: flex;
    height: 100px;
    line-height: 100px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
  }

  .bbs ul {
    animation: flowing 40s linear infinite;
    font-family: 'Work Sans', sans-serif;
    font-size: 100px;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
  }

  .bbs ul li {
    display: inline-block;
    padding-right: 10px;
  }

  @keyframes flowing {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .about2 {
    width: 0.1%;
    padding-left: 40px;
    z-index: 100;
    color: #B2B1B9;
    text-shadow: 0 0 10px #000000;
  }

  .about2 h2 {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 30px;
  }

  .eigoabout {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
  }

  .about3 {
    width: 40%;
  }

  .about3 img {
    object-fit: cover;
    width: 100%;
    height: 450px;
  }

  /* スクロールでふわっと */
  .about {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

  .portfolio {
    width: 80%;
    height: 500px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .portfolio1 {
    width: 50%;
  }

  .portfolio1 img {
    object-fit: cover;
    width: 100%;
    height: 450px;
    z-index: 10;
  }

  .portfolio2 {
    width: 10%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 50px;
  }

  .eigoportfolio {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
  }

  .portfolio2 h2 {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 32px;
    z-index: 100;
  }

  .portfolio3 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
  }

  .portfoliop {
    height: 300px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 5px;
    line-height: 40px;
  }

  .portfoliobtn {
    margin: 40px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }

  .btn--portfolio,
  a.btn--portfolio {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--portfolio:hover,
  a.btn--portfolio:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--portfolio {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .portfolio {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

  .travel {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    padding: 50px 0 100px 0;
    background-image: url(../img/top_9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
  }

  .travel h2 {
    margin-left: 40px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 30px;
  }

  .eigotravel {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
  }

  .travelcontents {
    width: 90%;
    margin: 20px auto;
  }

  /* 横スクロール */
  /* https://kouhekikyozou.com/css_horizontal_scroll */
  .travel1 {
    width: 100%;
    margin-top: 20px;
    overflow-x: scroll;
  }

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

  .travel1 img {
    object-fit: cover;
    height: 250px;
    margin: 5px;
    flex-shrink: 0;
  }

  .travel1::-webkit-scrollbar {
    height: 14px;
    /* スクロールバーの高さ */
  }

  .travel1::-webkit-scrollbar-thumb {
    background: #B2B1B9;
    /* ツマミの色 */
    border-radius: 7px;
    /* ツマミ両端の丸み */
  }

  .travel1::-webkit-scrollbar-track {
    background: #ededed;
    /* トラックの色 */
    border-radius: 7px;
    /* トラック両端の丸み */
  }

  /* ホバーアクション */
  /* https://pengi-n.co.jp/blog/horizontal-slideshow/ */
  .travel1 img {
    transition: all 0.2s;
  }

  .travel1 img:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    /* opacity: 0.8; */
    cursor: pointer;
  }

  .travelbtn {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
  }

  .btn--travel,
  a.btn--travel {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--travel:hover,
  a.btn--travel:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--travel {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .travel {
    opacity: 0;
    transform: translateY(-20px);
    transition: 3s ease;
  }

  .contact {
    width: 75%;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact1 {
    width: 25%;
  }

  .contact1 img {
    width: 80%;
  }

  .contact2 {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .contact2 h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
  }

  .eigocontact {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
  }

  .contact2 p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    line-height: 25px;
  }

  .contacth2,
  p {
    height: 100px;
  }


  .contactbtn {
    margin: 0 auto;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
  }

  .btn--contact,
  a.btn--contact {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--contact:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--contact {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .contact {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }
}


/*SPサイズレスポンシブ*/
@media(max-width:599px) {
  body {
    max-width: 599px;
    background-color: #f6f3ee;
  }

  .container {
    width: 100%;
  }

  .header {
    display: none;
  }

  html {
    scroll-behavior: smooth;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  .spheader {
    width: 100%;
    background-image: url(../img/other_top.jpg);
    background-size: 100%;
    background-repeat: none;
    height: 200px;
  }

  /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
  .spheader {
    /* じわっと画像が表示される */
    animation: fadeIn 2.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
  }

  /* じわっと画像が表示される */
  @keyframes fadeIn {

    /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {
      opacity: 0
    }

    /* 始め */
    100% {
      opacity: 1
    }

    /* 終わり */
  }
  

  .spmenu {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.35);
    position: fixed;
    font-size: 12px;
    transition: 1.3s;
    z-index: 1000;
  }

  .spmenu1 {
    width: 37%;
    margin-left: 2%;
  }

  .spmenu1 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-between;
  }

  .spmenu2 {
    width: 22%;
    height: 60px;
  }

  .spmenu2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .spmenu3 {
    width: 37%;
    margin-right: 2%;
  }

  .spmenu3 ul {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-between;
  }

  /* メニューバーが小さくなる */
  .spsmall {
    background-color: rgba(255, 255, 255, 0.90);
  }

  .top {
    width: 80%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }

  .top1 {
    width: 100%;
  }

  .top img {
    width: 70%;
    margin: 0 auto;
  }

  .top2 {
    width: 100%;
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 30px;
  }

  .my {
    font-size: 40px;
    color: red;
  }

  .about {
    width: 80%;
    height: 600px;
    margin: 150px auto 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .about1 {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
  }

  .aboutp {
    height: 380px;
    font-size: 18px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 4px;
    line-height: 25px;
  }

  /* ボタンアクション */
  .aboutbtn {
    height: 50px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }

  .btn--about,
  a.btn--about {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--about:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--about {
    border-radius: 100vh;
  }

  /* 流れる文字 */
  .bbs {
    align-items: center;
    color: #000000;
    display: flex;
    height: 100px;
    line-height: 100px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
  }

  .bbs ul {
    animation: flowing 40s linear infinite;
    font-family: 'Work Sans', sans-serif;
    font-size: 100px;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
  }

  .bbs ul li {
    display: inline-block;
    padding-right: 10px;
  }

  @keyframes flowing {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .about2 {
    /* width: 0.1%;
    padding-left: 40px; */
    z-index: 100;
    color: #B2B1B9;
    text-shadow: 0 0 10px #000000;
    margin-bottom: 130px;
  }

  .about2 h2 {
    /* writing-mode: vertical-rl;
    text-orientation: sideways; */
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    position: relative;
  }

  .eigoabout {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
  }

  .about3 {
    width: 100%;
  }

  .about3 img {
    object-fit: cover;
    width: 100%;
    height: 180px;
    object-position: bottom;
    position: absolute;
  }

  .aboutsp {
    display: flex;
  }

  .portfolio {
    width: 80%;
    height: 500px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .portfolio1 {
    width: 100%;
  }

  .portfolio1 img {
    object-fit: cover;
    width: 70%;
    height: 450px;
    position: absolute;
  }

  .portfolio2 {
    /* width: 10%; */
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    position: relative;
    margin: 0 0 100px auto
  }

  .eigoportfolio {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
  }

  .portfolio2 h2 {
    /* writing-mode: vertical-rl;
    text-orientation: sideways; */
    font-size: 20px;
    /* z-index: 100; */
    text-align: right;
    color: #000000;
    text-shadow: 0 0 10px #000000;
  }

  .portfolio3 {
    width: 70%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 0 auto;
  }

  .portfoliop {
    height: 300px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 5px;
    line-height: 40px;
    text-align: right;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
  }

  .portfoliobtn {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }

  .btn--portfolio,
  a.btn--portfolio {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--portfolio:hover,
  a.btn--portfolio:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--portfolio {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .portfolio {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }

  .travel {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    padding: 50px 0 100px 0;
    background-image: url(../img/top_9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
  }

  .travel h2 {
    margin-left: 40px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    color: #000000;
    text-shadow: 0 0 10px #000000;
  }

  .eigotravel {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
  }

  .travelcontents {
    width: 90%;
    margin: 20px auto;
  }

  /* 横スクロール */
  /* https://kouhekikyozou.com/css_horizontal_scroll */
  .travel1 {
    width: 100%;
    margin-top: 20px;
    overflow-x: scroll;
  }

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

  .travel1 img {
    object-fit: cover;
    height: 200px;
    margin: 5px;
    flex-shrink: 0;
  }

  .travel1::-webkit-scrollbar {
    height: 14px;
    /* スクロールバーの高さ */
  }

  .travel1::-webkit-scrollbar-thumb {
    background: #B2B1B9;
    /* ツマミの色 */
    border-radius: 7px;
    /* ツマミ両端の丸み */
  }

  .travel1::-webkit-scrollbar-track {
    background: #EDEDED;
    /* トラックの色 */
    border-radius: 7px;
    /* トラック両端の丸み */
  }

  /* ホバーアクション */
  /* https://pengi-n.co.jp/blog/horizontal-slideshow/ */
  .travel1 img {
    transition: all 0.2s;
  }

  .travel1 img:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    /* opacity: 0.8; */
    cursor: pointer;
  }


  .travelbtn {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
  }

  .btn--travel,
  a.btn--travel {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--travel:hover,
  a.btn--travel:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--travel {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .travel {
    opacity: 0;
    transform: translateY(-20px);
    transition: 3s ease;
  }

  .contact {
    width: 75%;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contact1 {
    width: 40%;
  }

  .contact1 img {
    width: 80%;
  }

  .contact2 {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .contact2 h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
  }

  .eigocontact {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
  }

  .contact2 p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    line-height: 25px;
  }

  .contacth2,
  p {
    height: 100px;
  }


  .contactbtn {
    margin: 0 auto;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 13px;
    margin: 20px auto;
  }

  .btn--contact,
  a.btn--contact {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 30px;
  }

  .btn--contact:hover,
  a.btn--about:hover {
    color: #000000;
    background: #eee8e8;
  }

  a.btn--contact {
    border-radius: 100vh;
  }

  /* スクロールでふわっと */
  .contact {
    opacity: 0;
    transform: translateY(-20px);
    transition: 2s ease;
  }
}