@charset "UTF-8";
/* sp */
/* slick-theme.css */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 27%; /* 矢印の位置 高さ */

    display: block;

    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
}

.slider_uv .slick-prev,
.slider_uv .slick-next {
  top: 32%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 10px; /* 矢印の位置 横 */
}

.slick-prev:before
{
    /* content: '←'; */
    content: url("../img/sliderarrow_left.png");
}

.slick-next
{
    right: 50px; /* 矢印の位置 横 */
}

.slick-next:before
{
    /* content: '→'; */
    content: url("../img/sliderarrow_right.png");
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


/* slick.css */
.slider li img {
    width: 130px;
    margin: 0 auto;
    transition: .5s;
}

.slider {
    width:100%; /*スライダーの幅 */
    margin:0 auto;
    overflow: hidden;
}

.slider li img:hover {
    opacity: 0.5;
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0 15px; /*画像間の余白 */
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    margin: 0 18px; /*画像間の余白 */
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* usersvoice */
.slider_uv {
    width: 100%;
    overflow: hidden;
}

.slider_uv li img {
    width: 80%;
    margin: 7% auto 5%;
    transition: .5s;
}

.slider_uv {
     width:100%; /*スライダーの幅 */
    /* margin:0 auto; */
}


.slider_uv li img:hover {
    opacity: 0.5;
}

.slick-slider_uv
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
} 

.slick-slider_uv .slick-track,
.slick-slider_uv .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide_uv
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    margin: 0 18px; /*画像間の余白 */
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide_uv img
{
    display: block;
}
.slick-slide_uv.slick-loading img
{
    display: none;
}
.slick-slide_uv.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/* common */
html {
    height: 100%;
}

main {
  margin-bottom: 15%;
}

body {
    height: 100%;
    background-color: #F5F3EF;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.9rem;
}

p, li {
    font-weight: 300;
}

img {
  width: 100%;
}

.right-logo {
  display: none;
}

.header {
  position: fixed;
  z-index: 5;
}

.navimenu_pc {
  display: none;
}

h1 {
    width: 20%;
    margin: 15px;
}

h2 {
  font-family: "Chonburi", serif;
}

a:link,
a:visited {
  color: #333;
}

a:hover {
  color: #CF939C;
}

/* 小ページのヘッダー画像 */
.h2 {
  padding: 10vh 0 0;
  position: relative;
  top: 150px;
  left: 30px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  width: 80%;
}

/* text animation */
.text_animation p {
  opacity: 0;
  transform: translateY(70px);
  animation: fadeUp both;
  animation-timeline: view();
  animation-range: entry 30% cover 40%;
  animation-duration: 10s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* 初期位置を少し下に */
  }

  100% {
    opacity: 1;
    transform: translateY(0); /* 通常位置に戻す */
  }

}

/* ハンバーガーメニュー */
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 24px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  right: 27px;
  cursor: pointer;
  z-index: 4;
  display: inline-block;
}

.menu-icon span {
  display: block;
  width: 40px;
  height: 40px;
  margin: 6px 0;
  background-image: url(../img/menu.png);
  background-size: contain;
}


/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 2;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
    position: fixed;
    top: 0;
    right: -390px; /* ← 初期位置を左へ */
    width: 390px;
    height: 100%;
    background-color: rgba(218, 134, 147, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 3;
}

#menu-toggle:checked ~ .menu {
    right: 0; /* ← 開いたときは左0へ */
}

.menu ul {
    display: block;
    list-style: none;
    padding: 60px 10px;
}

.menu li {
    margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #3A3A3A;
  font-size: 1.2rem;
  font-family: "Chonburi", serif;
  transition: color 0.3s;
  text-transform: capitalize;
}

.menu a:hover {
    color: rgb(219, 128, 132);
}

/* メニュー項目 */
/* チェックボックスは隠す */
.menu_parent input {
  display: none;
}

/* 初期は閉じる */
.menu_child {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

/* 開いた時 */
.menu_parent input:checked ~ .menu_child {
  max-height: 300px; /* 適当に大きめ */
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 40px;
}

.menu-item a {
  flex: none;
}

.pd {
  cursor: pointer;
}

.menu_parent {
  height: auto;
  width: 100%; /* メニュー幅 */
  font-family: "Chonburi", serif;
  letter-spacing: 0.1em;
  float: none;
  line-height: 50px; /*メニュー項目の間隔 */
  font-size: 1rem; /*メニュー項目の文字サイズ */
  white-space: nowrap; /*メニュー項目と矢印の並列 */
  position: relative;
  display: block;
  justify-content: space-between;
  align-items: center;
  padding-left: 8%;
  }

.menu_parent .pd {
  display: inline-block;
  }

  /* メニューを移動させないため */
   #menu-navibtn:checked ~ .navimenu {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }

.menu_parent input:checked + .menu-item .angletoggle:before {
  transform: rotate(90deg);
}

.angletoggle:before {
  display: block;
  content: "";
  background-image: url(../img/menuarrow_open.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
  }


  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ .navimenu .menu {
    display: block;
  }

 /* 子メニュー */
  .menu_parent .menu_child {
    position: relative;
    padding: 0 50px; /*小メニュー前 */
    opacity: 1; /*小メニュー表示 */
  width: auto;
  box-sizing: border-box;
   line-height: 40px; /*メニュー項目の間隔 */

  }

.menu_parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }

  /* 子メニュー */
.menu_child li {
  font-size: 20px;
  /* border-bottom: 1px solid #DDD; */
}

#navi #menu-navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
}

#menu-navibtn span {
    display: block;
    width: 24px;
    height: 30px;
    background-image: url(../Desktop/menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 8px;
}

#menu-navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

#menu-navibtn span span::before,
#menu-navibtn span span::after,
#menu-navibtn span::after {
  position: absolute;
  left:10px;
  content:"";
  width: 20px;
  height: 3px;
}

.menu_sns {
  display: flex;
  padding-left: 5%;
  margin: 40% 0 5%;
}

.menu_sns .sns_icon {
  margin: 0 5%;
  width: 10%;
}

.menu_footer {
  display: flex;
}

.menu_footer a {
  display: block;
  font-size: 0.7rem;
  padding: 0 5%;
}

/* logo */
  .site-logo {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 消える状態 */
.site-logo.is-hide {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

 .fv {
  /* position: relative; */
  /* width: 100%; */
  /* height: 800px; */
  /* margin-top: 0; */
  /* background-image: url(../img/fv.svg); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* z-index: 1; */
  /* overflow: hidden; */
  /* background: none; */
}

/* 動画 */
.fv-video {
  position: absolute;
  inset: 0;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transform: translate(-50%, -50%); */
  z-index: 0;
  opacity: 0.1;
  mask-image: linear-gradient(to top, transparent 0%, black 50%);
}

.fv_text {
  position: absolute;
  writing-mode: vertical-rl;
  top: 151px;
  left: 50px;
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.3em;
  z-index: 1;
}

.first,
.second {
  display: inline;
}

.first .text,
.second .text {
  font-size: 1.6rem;
}

.fv_text div:nth-of-type(2) {
  text-indent: 1em;
} 

/* contents */
section {
  margin-top: 20%;
}

/* concept */
.concept p {
  line-height: 2;
}

.concept p:nth-child(1) {
  margin: 0 0 10% 5%;
}

.concept img {
  width: 60%;
}

.concept p:nth-child(3) {
  margin: 10% 0 10% 20%;
}

.concept .img {
  text-align: right;
}

.concept p:nth-child(5) {
  margin: 10% 0 10% 5%;
}

.concept p:nth-child(6) {
  font-family: "Chonburi", serif;
  margin: 0 0 0 auto;
  margin-right: 5%;
  padding-left: 2%;
    width: 120px;
    height: 40px;  
    position: relative; 
    /* display: inline-flex; */
    justify-content: left;
    /* align-items: center; */
    border: 1px solid #333;
    cursor: pointer;
}

.concept p:nth-child(6)::before {
  content:'';
  position: absolute;
  top: 25px;
  right: 28px;
  background: #333;
  width: 15px;
  height: 0.5px;
  rotate: 30deg;
  display: inline-block;
}

.concept p:nth-child(6)::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 9px;
  background: #333;
  width: 70%;
  height: 0.5px;
}

/* memorial art */
.art h2 {
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  margin-left: 8%;
}

.art h2 span {
  font-size: 2.5rem;
}

.art .artimg {
  width: 90%;
  position: relative;
  top: -30px;
  right: 20px;
}

.art h3 {
  font-family: "Chonburi", serif;
  font-size: 1.3rem;
  letter-spacing: 0.09em;
  margin: 10% 0 0 13%;
  position: relative;
}

.art_container p {
  text-align: center;
}

.art_container img {
  width: 60%;
  margin: 20px auto;
}

:is(.family_container img, .baby_container img, .bridal_container img) {
  width: 40%;
}

.animal::before {
  content: "";
  display: block;
  width: 50px;
  height: 60px;
  background-image: url(../img/animal_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center; */
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -10;
}

.family::before {
  content: "";
  display: block;
  width: 50px;
  height: 60px;
  background-image: url(../img/family_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center; */
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -10;
}

.baby::before {
  content: "";
  display: block;
  width: 50px;
  height: 60px;
  background-image: url(../img/baby_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center; */
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -10;
}

.bridal::before {
  content: "";
  display: block;
  width: 50px;
  height: 60px;
  background-image: url(../img/bridal_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center; */
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -10;
}

.animal_wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  text-align: center;
  width: 100%;
}

:is(.animal_container, .family_container, .baby_container, .bridal_container) {
  margin-bottom: 10%;
}

.animal_container:nth-child(2) {
  margin: 0 30px;
}

:is(.family_container div, .baby_container div, .bridal_container div) {
  text-align: center;
}

:is(.bg01, .bg03)::after {
  content: "";
  display: block;
  background-image: url(../img/line_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 120px;
}

.bg03::after {
  transform: scale(1, -1);
  rotate: -5deg;
}

:is(.bg02, .bg04)::after {
  content: "";
  display: block;
  background-image: url(../img/line_bg02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 120px;
}

.bg04::after {
  content: "";
  display: block;
  background-image: url(../img/line_bg03.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 120px;
}

/* concept2 */

.concept2 {
  background-image: url(../img/concept2_bg1.png), url(../img/concept2_bg2.png), url(../img/concept2_bg.png);
  background-repeat: no-repeat;
  background-size: 250px, 300px, cover;
  background-position: -80px 120px, 130px 440px,0 0;
  height: 750px;
}

.concept2 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #F5F3EF;
  text-align: right;
  line-height: 1.8;
  padding: 25% 5% 0 0;
}

.concept2 h2 img {
  width: 55%;
}

.concept2 .concept2img1 img{
  width: 120%;
  position: relative;
  top: -10px;
  left: -20px;
}

.concept2 .concept2img2 {
  width: 65%;
  margin: 18% 0 0 auto;
}

.concept2_wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  /* background-position: -60px -30px; */
  height: 240px;
}

.concept2_container p {
  color: #F5F3EF;
  padding-bottom: 17%;
  width: 240px;
}

.concept2_container p:first-of-type {
  margin-top: 15%;
}

.concept2_container p:nth-child(1) {
  padding-left: 7%;
}

.concept2_container p:nth-child(2) {
  padding-left: 4%;
}

/* pickup */
.pickup h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.pickup h2::first-letter {
  font-size: 2.5rem;
}

.pickup p {
  position: relative;
  border: 1px solid #333;
  width: 150px;
  height: 40px;
  padding: 5px 9px;
  margin: 5% auto;
}

.pickup p::before {
  content:'';
  position: absolute;
  top: 25px;
  right: 6px;
  background: #333;
  width: 15px;
  height: 0.5px;
  rotate: 30deg;
  display: inline-block;
}

.pickup p::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 9px;
  background: #333;
  width: 89%;
  height: 0.5px;
}

/* gallery */
.gallery h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.gallery h2::first-letter {
  font-size: 2.5rem;
}

.gallery p {
  position: relative;
  border: 1px solid #333;
  width: 130px;
  height: 40px;
  padding: 5px 9px;
  margin: 5% auto;
}

.gallery p::before {
  content:'';
  position: absolute;
  top: 25px;
  right: 6px;
  background: #333;
  width: 15px;
  height: 0.5px;
  rotate: 30deg;
  display: inline-block;
}

.gallery p::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 9px;
  background: #333;
  width: 89%;
  height: 0.5px;
}

/* uservoice */
.usersvoice {
  background-image: url(../img/uvbg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -50px 30px;
  height: 240px;
}

.usersvoice h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.usersvoice h2::first-letter {
  font-size: 2.5rem;
}

.glassbg {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 3%;
}

/* reel */
.reel h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.reel h2::first-letter {
  font-size: 2.5rem;
}

.reel_wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.reel_wrapper li {
  padding: 5% 8%;
}

.reel_wrapper li img{
  width: 100%;
}

.reel_icon {
  width: 7%;
  margin: 0 auto;
}

/* news */
.news h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.news h2::first-letter {
  font-size: 2.5rem;
}

.news_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin: 5% 5%;
}

.news_container {
  flex: 1;
  margin: 0 3%;
}

.news time {
  font-family: "Chonburi", serif;
  font-size: 0.5rem;
}

.news_wrapper p {
  font-size: 0.75rem;
}

.news_p {
  position: relative;
  border: 1px solid #333;
  width: 150px;
  height: 40px;
  padding: 5px 9px;
  margin: 5% auto;
}

.news_p::before {
  content:'';
  position: absolute;
  top: 25px;
  right: 6px;
  background: #333;
  width: 15px;
  height: 0.5px;
  rotate: 30deg;
  display: inline-block;
}

.news_p::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 9px;
  background: #333;
  width: 89%;
  height: 0.5px;
}

/* contact */
.contact h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.contact h2::first-letter {
  font-size: 2.5rem;
}

.contact_container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 5%;
  /* box-sizing: border-box; */
}

.contact_container li {
  margin: 0 5%;
}

.contact_icon {
  width: 12%;
  margin: 0 3%;
}

.email img{
  vertical-align: middle;
  padding-top: 6%;
  width: auto;
  height: 45px;
}

.contact p {
  text-align: center;
  margin-top: 5%;
}

/* faq */
.faq h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}

.faq h2::first-letter {
  font-size: 2.5rem;
}

.faq_content .summary input[type=checkbox] {
  display: none;
}
.faq01 {
  background-color: #fff;
  border-radius: 8px;
  margin: 2% 5% ;
}
/*質問テキスト*/
.faq_content label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 40px;
  cursor: pointer;
}
/*アイコン*/
.faq01::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/q.png);
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -28px;
  padding: 0 0 0 0;
  transition: 0.4s ease;
}

/*答えテキスト*/
.faq_content .answer_content {
  position: relative;
  margin: 0 40px;
  padding: 0 20px 0 23px;
max-height: 0;
  overflow: hidden;
  opacity: 0;
  /* 閉まる時 */
  transition:
    max-height 1s ease,
  opacity 2s ease,
  transform 3s ease;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 2% 4% 2%;
  padding-top: 0;
}

/* 開く時 */
.faq_content .summary input:checked ~ .answer_content {
  max-height: 200px; 
  opacity: 1;
  transition:
    max-height 5s cubic-bezier(0.25, 0.8, 0.25, 1),
  opacity 2s ease,
  transform 5s ease;
}
.faq_content .summary input[type=checkbox]:checked ~ .answer_content {
  height: auto;
  padding: 10x 17px;
  opacity: 1;
}

.summary label::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  background-image: url(../img/faq_arrow_side.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s;
}

/* 開いたとき */
.faq_content .summary input:checked ~ label::after {
  transform: translatex(-50%) rotate(90deg);
}

.answer_content::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/a.png);
  background-repeat: no-repeat;
  background-size: center/contain;
  flex-shrink: 0;
  margin: 0 8px 0 0;
}

summary {
  list-style-type: none;
}

.faq_p {
  position: relative;
  border: 1px solid #333;
  width: 150px;
  height: 40px;
  padding: 5px 9px;
  margin: 5% 4% 0 auto;
}

.faq_p::before {
  content:'';
  position: absolute;
  top: 25px;
  right: 6px;
  background: #333;
  width: 15px;
  height: 0.5px;
  rotate: 30deg;
  display: inline-block;
}

.faq_p::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 9px;
  background: #333;
  width: 89%;
  height: 0.5px;
}


/* footer */
.footer {
  margin-bottom: 3%;
}

.footer_list img {
  width: 45%;
}

.footer_list a {
  display: inline-block;
  vertical-align: middle;
}

.footer_list li {
  padding: 2% 7% ;
}

.sns {
  display: -webkit-flex;
  display: flex;
  margin: 5% 0 5% 4%;
  /* -webkit-justify-content: center;
  justify-content: center; */
}

.sns_icon {
  width: 9%;
  margin: 0 3%;
}

.x img{
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  padding-top: 3px;
}

.terms {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  font-size: 0.7rem;
}

.copy {
  font-size: 0.7rem;
  text-align: center;
  margin-bottom: 5%;
}

/* concept.html */
.concept_headerimg {
  width: 390px;
  height: 200px;
  background-image: url(../img/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* padding-top: 10px; */
}

.concept_wrapper {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
}

.concept_p_container {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 12% 9% 0 0;
}

div:nth-child(2 of .concept_p_container) {
  flex-direction: row;
  margin: 0 0 0 9%;
}

.concept_title {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  margin: 0 15% 0 5%;
  font-weight: 300;
  letter-spacing: 0.2em;
}

.second_title {
  margin: 0 5% 0 15%;
}
.concept_vertical {
  writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 2;
  margin-top: 10%;
}

.concept_img_sq {
  width: 75%;
  margin: 0 0 0 auto;
  position: relative;
  top: -40px;
  right: 0;
  z-index: -2;
}

.secondimg_sq {
  margin: 0 auto 0 0;
  top: -130px;
}

.concept_h3 {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.09em;
  margin-bottom: 30%;
}

.concept2_text span {
  font-size: 1.3rem;
  letter-spacing: 0.09em;
}

.concept2_text p:first-of-type,
 .concept2_text p:nth-of-type(3),
 .concept2_text p:nth-of-type(5) {
  margin: 0 auto 5% 10%;
}

.concept2_text img {
  display: block;
  width: 50%;
  margin: 0 auto 3%;
}

.concept2_text p:nth-of-type(2),
.concept2_text p:nth-of-type(4),
.concept2_text p:last-of-type {
  width: 80%;
  margin: 0 auto 20%;
}


/* art.html */
.art_h2 {
  text-align: center;
  letter-spacing: 0.07em;
  padding: 130px 0 80px;
}

.art_wrapper > div {
  position: relative;
}

.art_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 7%;
}

.art_wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.art_h3 {
  writing-mode: vertical-rl;
  text-transform: capitalize;
  font-family: "Chonburi", serif;
  letter-spacing: 0.08rem;
  position: absolute;
  top: -3%;
  left: 2%;
  z-index: 2;
}

.art01 {
  position: relative;
}

.art01::before {
  position: absolute;
  top: -5%;
  right: -11%;
  width: 42px;
  height: 32px;
  content: "";
  background-image: url(../img/popular.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.art_wrapper p:first-of-type {
  margin-top: 4%;
}

.art_wrapper p:last-of-type {
  font-family: "Chonburi", serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.art_wrapper p:last-of-type span {
  font-size: 0.4rem;
  padding-left: 2%;
}

#bridal {
  padding-top: 100px;
  margin-top: -100px;
}


/* detail.html */
.detail_body {
  width: 90%;
  margin: 0 auto;
}

.slider_details {
  padding-top: 25%;
}

.slider_details li {
  width: 10%;
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    /* padding: 0; */
    /* margin: -10% auto 0; */
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    cursor: pointer;
}

.detail_h3 {
  margin: 20% 0 0;
  font-family: "Chonburi", serif;
  font-size: 0.85rem;
}

.detail_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5%;
  height: 40px;
}

.detail_container p:first-of-type {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
}

.detail_container p:last-of-type {
  font-family: "Chonburi", serif;
  width: 40%;
  padding-left: 5%;
}

.detail_container p:last-of-type span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.6rem;
  padding-left: 5%;
}

.detail_body p:nth-of-type(2) {
  font-size: 1rem;
  margin: 10% 0;
}

.detail_body h4 {
  font-weight: 300;
  margin: 0 0 3%;
}

.detail_body h4::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  content: "";
  background-image: url(../img/heart_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 3px;
  margin-right: 1.7%;
}

.select_container{
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto 5%;  
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.select_container li {
  margin: 3% 0 3%;
  text-align: center;
}

.paw {
  background-image:url("../img/paw_n.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.paw.change {
  background-image:url("../img/paw_p.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.nose {
  background-image:url("../img/nose_n.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.nose.change {
  background-image:url("../img/nose_p.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.wool {
  background-image:url("../img/wool_n.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.wool.change {
  background-image:url("../img/wool_p.png");
  width:95px;
  height:87px;
  background-size: contain;/*画像全体を表示*/
}

.two {
  background-image:url("../img/two_n.png");
  width:154px;
  height:35px;
  background-size: contain;/*画像全体を表示*/
}

.two.change {
  background-image:url("../img/two_p.png");
  width:154px;
  height:35px;
  background-size: contain;/*画像全体を表示*/
}

.three {
  background-image:url("../img/three_n.png");
  width:154px;
  height:35px;
  background-size: contain;/*画像全体を表示*/
}

.three.change {
  background-image:url("../img/three_p.png");
  width:154px;
  height:35px;
  background-size: contain;/*画像全体を表示*/
}

.select_caution {
  font-size: 0.7rem;
  margin-bottom: 8%;
}

.shape {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 5% 0 5%;
}

.shape li {
  margin: 0 auto;
}

.dome {
  background-image:url("../img/dome_n.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.dome.change {
  background-image:url("../img/dome_p.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.square {
  background-image:url("../img/square_n.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.square.change {
  background-image:url("../img/square_p.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.rectangle {
  background-image:url("../img/rectangle_n.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.rectangle.change {
  background-image:url("../img/rectangle_p.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.hexagon {
  background-image:url("../img/hexagon_n.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.hexagon.change {
  background-image:url("../img/hexagon_p.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.heart {
  background-image:url("../img/heart_n.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.heart.change {
  background-image:url("../img/heart_p.png");
  width:77px;
  height:106px;
  background-size: contain;/*画像全体を表示*/
}

.small {
  background-image:url("../img/small_n.png");
  width:130px;
  height:29px;
  background-size: contain;/*画像全体を表示*/
}

.small.change {
  background-image:url("../img/small_p.png");
  width:130px;
  height:29px;
  background-size: contain;/*画像全体を表示*/
}

.big {
  background-image:url("../img/big_n.png");
  width:130px;
  height:29px;
  background-size: contain;/*画像全体を表示*/
}

.big.change {
  background-image:url("../img/big_p.png");
  width:130px;
  height:29px;
  background-size: contain;/*画像全体を表示*/
}

.caution {
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px #CF939C solid;
  width: 230px;
  margin: 0 auto;
}

.caution_subtitle {
  font-weight: 400;
  margin: 5% 0 1%;
}

.caution_subtitle::before {
  content: "|";
  width: 10px;
  padding-right: 4px;
}

.caution_context {
  margin-bottom: 3%;
}

.button_base {
  display: block;
  color: #F5F3EF;
  background: #CF939C;
  border-radius: 17px;
  width: 221px;
  padding: 5px 0;
  margin: 13% auto;
  filter: drop-shadow(-2px -3px 5px rgb(250, 251, 255, 0.25)) drop-shadow(1px 2px 3px rgb(22, 27, 29, 0.25));
}

.art_details label {
  padding-left: 8px;
}

.art_details p {
  margin-bottom: 3%;
}

.ad01 {
  margin: 0;
  z-index: 5;
}

.ad01::before {
  display: none;
}

.ad_answer {
  margin-left: 0;
  background: #fff;
}

.ad_answer::before {
  display: none;
}

.art_details .ad_answer {
  position: relative;
  /* margin: 0 40px;
  padding: 0 20px 0 0; */
  top: -13px;
max-height: 0;
  overflow: hidden;
  opacity: 0;
  /* 閉まる時 */
  transition:
    max-height 1s ease,
  opacity 2s ease,
  transform 3s ease;
  display: inline-block;
  /* align-items: flex-start; */
  /* gap: 8px; */
  margin: 0;
  padding: 11px 71.3px 8px 8px;
  border-radius: 8px;
}

/* 開く時 */
.art_details .ad_summary input:checked ~ .ad_answer {
  max-height: 200px; 
  opacity: 1;
  transition:
    max-height 5s cubic-bezier(0.25, 0.8, 0.25, 1),
  opacity 1s ease,
  transform 4s ease;
}
.art_details .ad_summary input[type=checkbox]:checked ~ .ad_answer {
  height: auto;
  padding: 10x 17px;
  opacity: 1;
}

.ad_summary .ad01::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 20px;
  height: 20px;
  background-image: url(../img/ad_+.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* transition: transform 0.3s; */
}

/* 開いたとき */
.art_details .ad_summary input:checked ~ label::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translatey(-50%) rotate(0deg);
  width: 20px;
  height: 20px;
  background-image: url(../img/ad_-.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s;
}

/* news.html */
.news_headerimg {
  width: 390px;
  height: 200px;
  background-image: url(../img/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.newspage {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
  border-bottom: .5px solid #1E265D;
}

.newspage img {
  width: 130px;
}

.newspage_container {
  margin-left: 5%;
}

.newspage_container p:last-of-type {
  margin: auto 0 0 0;
}

.newspage time {
  font-family: "Chonburi", serif;
  font-size: 0.6rem;
}

.newspage p:last-of-type {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  background: #CF939C;
  width: 90px;
  padding: 3px 0 4px;
  border-radius: 3px;
}

.newspage_a:link,
.newspage_a:visited {
  color: white;
}

.newspage_a:hover {
  color: #333;
}



/* news01.html */
.time {
  display: block;
  text-align: right;
  font-family:  "Chonburi", serif;
  font-size: 0.8rem;
  padding: 10vh 5% 0 0;
}

.news_title {
  text-align: center;
  font-size: 1.2rem;
  margin: 10% 0;
}

.news_context {
  line-height: 1.5;
  margin: 10% 5%;
}

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

.pagination p {
  margin: 5% 3%;
}

.pagination span {
  color: #CF939C;
}

/* pickup記事 */
.pickup_01_img {
  width: 60%;
  margin: 0 auto;
}


/* pickup_list.html */
.pickup_headerimg {
  width: 390px;
  height: 200px;
  background-image: url(../img/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.pickup_container {
  display: flex;
  justify-content: flex-end;
}

.pickup_container p {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.3rem;
  padding: 2% 0;

}

.pickup_container .border {
  width: 40px;
  height: 28px;
  border-bottom: .5px solid #333;
  margin: 0 5%;
}

.pickup_container time {
  font-family: "Chonburi", serif;
  font-size: 0.6rem;
  padding: 5% 0;
  margin-right: 5%;
}

.pickup_wrapper {
  margin-bottom: -10%;
}

.pickup_wrapper img {
  width: 85%;
}

.pickupimg {
  margin: 0 5% 0 0;
  text-align: right;
}

.pickup_wrapper p:last-child {
  font-family: "Chonburi", serif;
  writing-mode: vertical-lr;
  letter-spacing: 0.08em;
  position: relative;
  top: -83px;
  left: 30px;
}

/* gallery.html */
.gallery_headerimg {
  width: 390px;
  height: 200px;
  background-image: url(../img/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.gallery_container {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}

.gallery_container li {
  margin: 3px;
}

.gallery01 {
  width: 211px;
}

.gallery02 {
  width: 136px;
}

.gallery03 {
  width: 352px;
}

.gallery04 {
  width: 136px;
}

.gallery05 {
  width: 211px;
}

.gallery06 {
  width: 136px;
  position: relative;
  top: -75px;
}

.gallery07 {
  width: 352px;
  position: relative;
  top: -75px;
}

.modal-open-button {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}

.modal:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transform: translate(50%, -50%);
}

.modal-wrapper {
  position: relative;
  width: 95%;
  max-width: 500px;
  max-height: 70%;
  padding: 10px;
  /* margin: auto; */
  overflow: scroll;
  background-color: #FEFEFE;
  border-radius: 5px;
  transition: scale 0.5s;
  scale: 0;
}

.modal:target .modal-wrapper {
  transition: scale 0.5s;
  scale: 1;
}


/* faq.html */
.faq_headerimg {
  width: 390px;
  height: 200px;
  background-image: url(../img/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.faq_h2 {
  padding: 10vh 0 0;
  position: relative;
  top: 150px;
  left: 15px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
}

/* company.html */
.company_h2 {
  text-align: center;
  letter-spacing: 0.07em;
  padding: 150px 0 5px;
}

.company_h2_p {
    text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
}

.vision,
.profile {
  width: 80%;
  margin: 15% auto;
}

.company_h3 {
  font-family: "Chonburi", serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vision p:first-of-type,
.profile p:first-of-type {
  font-size: 1rem;
  margin-bottom: 5%;
}

.vision p:last-of-type {
  margin-top: 5%;
}

.company_p {
  margin: 8% 0;
  text-align: center;
}

.bold {
  font-weight: bold;
  font-size: 1rem;
}

.profile table {
  width: 100%;
}

.profile table th {
  font-weight: 300;
  text-align: left;
  width: 30%;
}

.profile table th,
.profile table td {
  padding: 7% 0;
  border-bottom: .5px solid #1E265D;
}

.profile table img {
  width: 60%;
}

/* submit.html */
.form_submit {
    width: 100%;
    padding-top: 30%;
    text-align: center;
}

.form_submit img {
  width: 15%;
}

.form_submit div {
  margin: 10% 0;
}

.form_submit p:first-of-type,
.form_submit p:nth-of-type(2) {
  font-size: 1.2rem;
}

.button_base {
  margin-top: 5%;
}

/* privacypolicy.html */
.privacypolicy_h2 {
  text-align: center;
  letter-spacing: 0.07em;
  padding: 150px 0 5px;
}

.privacypolicy_h2_p {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
}

.privacypolicy_container {
  line-height: 1.5;
  margin: 0 40px 30px;
}

.privacypolicy_h3 {
  font-size: 1rem;
  margin: 15px 0 5px;
}

.privacypolicy_container ul {
  margin: 15px 0;
}

.privacypolicy_list li {
  list-style-type: decimal;
  list-style-position: inside;
  margin: 5px 0;
}

.privacypolicy_list2 li {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 20px;
}

/* comingsoon.html */
.comingsoon {
  width: 80%;
  padding-top: 15vh;
  margin: 0 auto;
}

.comingsoon p{
  text-align: center;
  margin: 10% 0;
}

.comingsoon p:first-of-type {
  font-size: 1.8rem;
}

.comingsoon img {
  width: 20%;
}

.comingsoon div {
  text-align: center;
}




@media screen and (min-width: 768px) {
	/* 768px以上に適用されるCSS（PC用） */
body {
  margin: 0;
  background: #F5F3EF;
}

.menu-wrapper {
  display: none;
}

.navimenu {
  display: block;
  position: fixed;
  top: 5%;
  left: 5%;
  background: #F5F3EF;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.menu a {
  font-size: 0.9rem;
}

.site-wrapper {
  width: 100%;
  max-width: 390px; /* スマホ幅 */
  min-height: 100vh;
  background: #F5F3EF;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.menu_sns {
  margin: 30% 0 5%;
}

.right-logo {
    display: block;
    position: fixed;
    top: 30%;
    right: -2%;
}

.right-logo img {
  width: 50%;
  height: auto;
}

img {
    max-width: 390px;
}


}