@charset "UTF-8";

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .s_mb10 {
    margin-bottom: 10px;
  }

  .s_mb20 {
    margin-bottom: 20px;
  }

  .s_mb30 {
    margin-bottom: 30px;
  }
}

.brown {
  color: #76350f;
}

img {
  vertical-align: top;
}

#header {
  background-image: url(../img/primary_bg.jpg);
  background-size: cover;
  width: 100%;
  height: 75vh;
  position: relative;
  display: block;
  background-position: center;
}

#header .title {
  animation-name: moveY;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@keyframes moveY {
  from {
    transform: translate(-50%, -50%);
  }

  to {
    transform: translate(-50%, -60%);
  }
}

#header .biwako {
  width: 220px;
  position: absolute;
  bottom: 50px;
  right: 100px;
}

#header .biwako img {
  width: 100%;
}

#header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
  background-image: url(../img/primary_footer.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 40px;
}


/*primary
=============================================== */
#primary {
  margin: 100px 0 0;
  text-align: center;
}

#primary .primary_img {
  margin: 0 auto 50px;
}

#primary .primary_img img {
  width: 100%;
}


.cart {
  background: #fae2b1;
  border-radius: 20px;
  border: 3px solid #fe6701;
  padding: 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}


.cart li {
  margin: 0 20px;
}

.btn:hover {
  transition: all .4s ease;
  transform: scale(0.95);
}

.grid {
  display: grid;
  margin-bottom: 50px;
}

.gap {
  gap: 40px;
}

.grid-col2 {
  grid-template-columns: 1fr 1fr;
}

.grid-col3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-col2-1 {
  grid-template-columns: 1fr 1fr;
}

.grid img {
  width: 100%;
}

@media (max-width: 768px) {
  .gap {
    gap: 20px;
  }

  .grid-col2-1 {
    grid-template-columns: 1fr;
  }
}

#news {
  padding: 30px;
  border: solid 3px #FF6600;
  max-width: 840px;
  border-radius: 20px;
  margin: 100px auto;
  box-sizing: border-box;
}

#news h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #76350f;
}

#news dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#news dd {
  margin: 0;
  /* padding: 0 0 20px 0; */
}

/* shop
=============================================== */
#shop {
  margin: 0 auto 100px;
  border: solid 3px #FF6600;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 40px;
}

#shop .shop_ttl {
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #FF6600;
  line-height: 1.4;
}

#shop .shop_ttl span {
  display: block;
}

#shop .shop_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

#shop .shop_photo {
  margin-bottom: 10px;
}

#shop .shop_info h3 {
  margin-bottom: 10px;
  font-weight: 700;
  background: #FFF4DD;
  border-radius: 5px;
  padding: 10px;
}

#shop .shop_name img {
  height: 40px;
}

#shop .shop_data {
  padding: 0 10px;
  line-height: 2;
}

#shop_info a {
  text-decoration: underline;
}

#shop .shop_info .map a {
  margin-left: 10px;
  color: #000;
  font-size: 1.2rem;
  padding: 5px;
  /*  background: #000;*/
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #000;
  display: inline-block;
  width: 60px;
  text-align: center;
  line-height: 1;
}

/* about
=============================================== */
#about {
  margin: 0 auto 150px;
  position: relative;
}

.about_ttl {
  background: url(../img/ttl_bg1.png) repeat-x #f60;
  background-size: auto 40px;
  padding: 70px 0 30px;
  text-align: center;
  margin-bottom: 80px;
}

.about_ttl img {
  margin-bottom: 20px;
}

.about_title {
  font-size: 3.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.about_ttl a {
  max-width: 460px;
  background: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 50px;
  color: #fe6701;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 10px;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-end;
}

.about_ttl a:hover {
  background: #ffea00;
  transition: all .4s ease;
}

.about_ttl a p {
  margin-right: 20px;
}

.about_txt {
  margin-bottom: 80px;
  font-size: 3.5rem;
  color: #76350f;
}

.alignment {
  padding: 50px 35px;
  text-align: center;
  border: 5px solid #fe6701;
  border-radius: 20px;
}

.alignment_ttl {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 50px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #fe6701;
  background-image: linear-gradient(to right, #fe6701, #fe6701 10px, transparent 10px);
  background-size: 21px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.alignment_txt {
  color: #76350f;
  margin-bottom: 50px;
  text-align: left;
  font-size: 1.8rem;
}

.alignment_img {
  margin-bottom: 50px;
}

.alignment_box {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.alignment_list {
  width: calc((100% - 40px)/2);
  margin-right: 40px;
}

.alignment_list:nth-of-type(2) {
  margin-right: 0;
}

.box_inner {
  border: 4px solid #fe6701;
  border-radius: 10px;
  margin-bottom: 40px;
}

.box_inner2 {
  margin-right: 0;
}

.alignment_subttl {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  background: #fe6701;
}

.box_inner ul {
  padding: 30px 20px;
}

.box_inner ul li {
  font-weight: bold;
  font-size: 2rem;
  list-style: decimal;
  text-align: left;
  margin-left: 50px;
}

.alignment_arrow {
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

.list_txt {
  background: #fe6701;
  padding: 30px;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-right: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.list_innertxt {
  line-height: 1;
  font-size: 3rem;
  margin-bottom: 10px;
}

.list_txt2 {
  background: #fe6701;
  padding: 30px;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-right: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.list_txt img {
  margin-bottom: 20px;
  width: 35%;
}

.list_txt2 img {
  margin-bottom: 20px;
  width: 35%;
}

.movie h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #f60;
}

.movie-list {
  margin: 0 auto 100px;
}

.movie-list li {
  width: 100%;
  height: 0;
  margin-bottom: 50px;
  position: relative;
  padding-top: 56.25%;
}

.movie-list li iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*flow
=============================================== */
#flow {
  margin: 0 auto 200px;
}

.flow_header {
  width: 100%;
  height: 300px;
  margin-bottom: 50px;
  background-image: url(../img/flow_header_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flow_header_ttl {
  width: 100%;
  position: absolute;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 2px 3px 5px #000;
}

.flow_header_ttl span {
  display: block;
}

.flow_header .container {
  max-width: 1200px;
  height: 100%;
  position: relative;
}

.flow_header .flow_header_img1 {
  position: absolute;
  bottom: -50px;
  left: -10%;
  width: 38%;
}

.flow_header .flow_header_img2 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 18%;
}

.flow_header .flow_header_img1 img,
.flow_header .flow_header_img2 img {
  width: 100%;
}

.flow {
  border-top: 3px solid #fe6701;
  padding-top: 50px;
  margin-bottom: 50px;
}

.flow_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
}

.flow01 .flow_box {
  padding: 50px 0 20px;
}

.flow_ttl {
  font-size: 3rem;
  color: #76350f;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.flow_img {
  width: 48%;
}

.flow_img img {
  border-radius: 20px;
}

.flow_arrow {
  margin: 0 auto 30px;
  text-align: center;
}

.flow-txt {
  font-size: 2.5rem;
  color: #76350f;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.flow03_img01 {
  text-align: center;
}

.flow03_img01 img {
  width: 200px;
}

.flow04 .flow04_txt01 {
  font-size: 2.5rem;
  color: #76350f;
  font-weight: bold;
  text-align: center;
}


.flow04 .flow04_txt01 span {
  color: #fe6701;
  margin-right: 5px;
}

.flow_catch {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #76350f;
}

.flow-grid img {
  border-radius: 20px;
}

.flow-grid p {
  padding-top: 10px;
  color: #76350f;
  font-weight: bold;
  font-size: 2.5rem;
}

.flow_txt01 {
  font-size: 1.8rem;
  color: #76350f;
  text-align: center;
}

img.round {
  border-radius: 20px
}

/*process
=============================================== */
#process {
  margin: 0 auto 100px;
  background: url(../img/ttl_bg2.png) repeat-x #f60;
  background-size: auto 30px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 0 30px;
  box-sizing: border-box;
}

#process .process_bg {
  background: #fe6701;
  padding-bottom: 100px;
}

.process_top {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  margin-bottom: 50px;
}

.process_top:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  /* 必要に応じて調整 */
  border-top: 1px solid transparent;
  /* スペースを確保 */
  background: repeating-linear-gradient(to right,
    #fff 0,
    #fff 5px,
    transparent 5px,
    transparent 10px);
  height: 1px;
  /* 破線の高さ */
  margin-top: 5px;
  /* 上の要素との間隔 */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process_box {
  background: #fff;
  padding: 80px 30px;
}

.process_img {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px 0;
}

.process_img li {
  width: 33.33%;
  margin-right: 1.96%;
}

.process_img li:nth-child(3n) {
  width: 29.41%;
  margin: 0;
}

.process_arrow {
  margin: 0 auto 30px;
  text-align: center;
}

.process_sub_ttl {
  font-size: 4rem;
  text-align: center;
  color: #ff0000;
  font-weight: bold;
  margin-bottom: 50px;
}


/*product
=============================================== */
#product {
  margin: 0 auto 100px;
}

.product_container {
  max-width: 1200px;
  border: 3px solid #fe6701;
  border-radius: 20px;
  padding: 50px;
  margin: 0 auto;
  box-sizing: border-box;
}

.product_ttl {
  max-width: 700px;
  font-size: 4rem;
  font-weight: bold;
  padding-bottom: 10px;
  color: #76350f;
  text-align: center;
  margin: 0 auto 50px;
  background-image: linear-gradient(to right, #fe6701, #fe6701 10px, transparent 10px);
  background-size: 20px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.product_ttl span {
  color: #fe6701;
}

.product_txt {
  font-weight: bold;
  color: #76350f;
  margin-bottom: 50px;
  text-align: center;
  font-size: 2rem;
}

.product_txt span {
  color: #fe6701;
}

.product_txt img {
  width: 150px;
}

.product_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.product_box li img {
  width: 100%;
}

.product_box li p {
  font-size: 2rem;
  color: #76350f;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.product_data {
  border-top: solid 1px #ccc;
  padding-top: 30px;
  background: #fff;
  color: #76350f;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-content: center;
}


.data_price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  border-top: solid 1px #ccc;
  padding-top: 30px;
}

.data_price span {
  font-size: 1.6rem;
}

.data_left {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.product_data_ttl {
  margin-bottom: 20px;
  text-align: center;
}

.data_left img {
  margin-bottom: 20px;
}

.data_left p {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.data_right {
  width: 55%;
}

.right_txt {
  margin-bottom: 40px;
}

.right_txt span {
  color: #fe6701;
  font-weight: bold;
}

.data_right dl {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid #76350f;
  padding: 20px;
}

.data_right dl dt {
  width: 100%;
  display: block;
}

.data_right dl dt {
  width: 100%;
  display: block;
}

.data_right dl dt,
.data_right dl dd {
  padding: 10px 0 0;
}

.last_btn {
  text-align: center;
  margin: 0 auto;
}


.last_btn:hover {
  transition: all .4s ease;
  transform: scale(0.95);
}

.product_price {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.product_price span {
  font-size: 2rem;
  font-weight: bold;
}

/*instagram
=============================================== */
.insta {
  text-align: center;
  margin: 0 auto 100px;
}

.insta_btn2 {
  /*ボタンの下地*/
  color: #FFF;
  /*文字・アイコン色*/
  border-radius: 20px;
  /*角丸に*/
  position: relative;
  display: inline-block;
  height: 100px;
  /*高さ*/
  width: 300px;
  /*幅*/
  text-align: center;
  /*中身を中央寄せ*/
  font-size: 3.5rem;
  /*文字のサイズ*/
  line-height: 100px;
  /*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  text-decoration: none;
  /*下線は消す*/
}

.insta_btn2:before {
  /*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*全体を覆う*/
  height: 100%;
  /*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram {
  /*アイコン*/
  margin-right: 10px;
  font-size: 50px;
  position: relative;
  top: 5px;
}

.insta_btn2 span {
  /*テキスト*/
  display: inline-block;
  position: relative;
  transition: .5s;
  color: #fff;
}

.insta_btn2:hover span {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.my-color {
  color: #fff;
}



/*message
=============================================== */
#message {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 100px;
}

.message_ttl {
  color: #f60;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.message_txt {
  width: 48%;
  color: #76350f;
}

.message_photo {
  width: 48%;
  display: flex;
  justify-content: space-between;
}

#message .message_photo li {
  width: 48%;
}

#message p a:link {
  color: #76350f;
}

#poplead {
  text-align: center;
  margin-bottom: 100px;
}

#poplead .poplead_ttl,
#poplead .entry_btn {
  margin-bottom: 50px;
}

#poplead .entry_btn a {
  max-width: 600px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50px;
  border: 3px solid #FFF;
  background: #06C755;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

#poplead .entry_btn a:hover {
  background: #05AB49;
}


@media (max-width: 768px) {
  #poplead .entry_btn a {
    height: 70px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #poplead {
    margin-bottom: 50px;
  }

  #poplead .entry_btn a {
    gap: 10px;
    font-size: 20px;
  }

  #poplead .poplead_ttl,
  #poplead .entry_btn {
    margin-bottom: 30px;
  }

  #poplead .poplead_ttl img {
    width: 75vw;
  }

  #poplead .line_btn svg {
    width: 45px;
  }

}


/* ---------------------------------------------------------
@media (max-width: 1440px)
----------------------------------------------------------- */
@media (max-width: 1440px) {
  #process {
    background-size: auto 30px;
  }
}

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

  .about_txt {
    margin-bottom: 50px;
    font-size: 3rem;
  }

  .inner_txt2 {
    font-size: 2rem;
  }

  .inner_txt2 span {
    font-size: 5rem;
  }

  .inner2_txt2 p {
    font-size: 2rem;
  }

  .inner2_txt2 img {
    margin-bottom: 10px;
  }

  .btn {
    width: 300px;
  }

  .about_title {
    font-size: 3.5rem;
  }

  .alignment_ttl {
    font-size: 3rem;
  }

  .alignment_txt {
    font-size: 1.6rem;
  }

  .alignment_arrow {
    margin-bottom: 20px;
  }

  .flow_header {
    height: 250px;
  }

  .flow_header .flow_header_img1 {
    width: 28%;
    left: 0;
  }

  .flow_header .flow_header_img2 {
    width: 16%;
  }

  .flow_ttl {
    font-size: 2.5rem;
  }

  .flow_inner p {
    font-size: 1.6rem;
  }

  .flow_txt01 {
    font-size: 1.6rem;
  }

  .flow04 .flow04_txt01 {
    font-size: 2.2rem;
  }

  .flow_catch {
    font-size: 1.6rem;
  }

  .flow-grid p {
    font-size: 2rem;
  }

  .box_inner ul li {
    font-size: 1.8rem;
  }

  .process_sub_ttl {
    font-size: 3rem;
  }

  .product_container {
    width: 92%;
  }

  .product_ttl {
    font-size: 3.2rem;
  }

  .banner_left img {
    width: 400px;
  }

  .banner_right {
    width: calc(100% - 400px);
  }
}

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

  #shop {
    padding: 30px;
  }

  #shop .shop_ttl {
    font-size: 3.6rem;
  }

  #shop .shop_ttl span {
    display: block;
  }

  .about_title {
    font-size: 3rem;
  }

  .about_ttl a {
    font-size: 1.8rem;
    line-height: 33px;
  }

  .about_ttl img {
    margin-bottom: 10px;
  }

  .about_txt {
    margin-bottom: 30px;
    font-size: 2.5rem;
  }

  .alignment_txt {
    margin-bottom: 30px;
  }

  #flow {
    margin: 0 auto 120px;
  }

  .flow_header_ttl {
    font-size: 3.5rem;
  }

  .flow_box {
    padding: 30px 0;
  }

  .box_inner ul li {
    font-size: 1.6rem;
    margin-left: 20px;
  }

  .list_innertxt {
    font-size: 2.5rem;
  }

  #process {
    background-size: auto 20px;
  }

  #product {
    margin: 0 auto 50px;
  }

  #message {
    margin: 0 auto 50px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 900px)
----------------------------------------------------------- */
@media (max-width: 900px) {
  .about_txt {
    font-size: 2rem;
  }

  .alignment {
    padding: 50px 25px;
  }

  .alignment_ttl {
    margin-bottom: 30px;
  }

  .alignment_subttl {
    font-size: 2rem;
  }

  .alignment_txt br {
    display: none;
  }

  .flow-grid p {
    font-size: 1.8rem;
  }

  .box_inner ul {
    padding: 10px 10px;
  }

  .box_inner2 ul {
    padding: 23px 10px;
  }

  .box_inner ul li {
    margin-left: 35px;
  }

  .flow_catch {
    text-align: left;
  }

  .box2_inner2 li {
    margin-bottom: 20px;
  }

  .process_arrow img {
    width: 80px;
  }

  .process_sub_ttl {
    margin-bottom: 30px;
  }

  .product_box li p {
    font-size: 1.6rem;
  }

  #message {
    margin: 0 auto 60px;
  }

  #flow {
    margin: 0 auto 100px;
  }

  .data_left img:nth-of-type(1) {
    width: 80%;
  }
}
@media (max-width: 840px) {

#news {
  padding: 20px;
  margin: 50px 20px;
}

}
/* ---------------------------------------------------------
@media (max-width: 768px)
----------------------------------------------------------- */
@media (max-width: 768px) {

  .flow-grid img,
  img.round {
    border-radius: 10px
  }

  #header .biwako {
    width: 160px;
    position: absolute;
    bottom: 50px;
    right: 30px;
  }

  #header:after {
    height: 40px;
    background-size: auto 40px;
  }

  .flow_header {
    height: 180px;
  }

  .flow_header_ttl {
    font-size: 2.8rem;
  }

  .cart {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 50px;
  }

  #shop {
    padding: 30px 20px;
  }

  #shop .shop_ttl {
    font-size: 3rem;
  }

  #shop .shop_container {
    grid-template-columns: 1fr;
  }

  .about_txt {
    font-size: 2.2rem;
  }

  .about_box li {
    width: 50%;
  }

  .movie h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .movie-list {
    display: block;
    margin: 0 auto 50px;
  }

  .movie-list li {
    margin-bottom: 50px;
  }

  .alignment_list {
    width: calc((100% - 20px)/2);
    margin-right: 20px;
  }

  .alignment_img {
    margin-bottom: 30px;
    width: 60%;
  }

  .alignment_arrow {
    width: 70px;
  }

  .alignment_txt {
    margin-bottom: 20px;
  }

  .box_inner {
    margin-bottom: 20px;
  }

  .list_innertxt {
    font-size: 1.8rem;
  }

  .list_txt {
    padding: 15px;
    font-size: 1.8rem;
  }

  .list_txt2 {
    padding: 15px;
    font-size: 1.8rem;
  }

  .flow_header .flow_header_img2 {
    right: 8%;
  }

  #about {
    margin: 0 auto 80px;
  }

  #flow {
    margin: 0 auto 100px;
  }

  .flow_ttl {
    font-size: 2rem;
  }

  .flow_top {
    margin-bottom: 0;
  }

  .flow_box {
    justify-content: center;
    align-content: center;
  }

  .flow_inner {
    margin-right: 20px;
  }

  .flow_inner br {
    display: none;
  }

  .flow_inner p {
    text-align: left;
  }

  .flow_catch {
    text-align: left;
  }

  .flow-grid p {
    font-size: 1.6rem;
  }

  .flow_img4 {
    margin-bottom: 0;
  }

  .flow03_img01 img {
    width: 160px;
  }

  .flow_txt01 {
    text-align: left;
  }

  .flow_txt01 br {
    display: none;
  }


  #process {
    margin: 0 auto 50px;
    background-size: auto 15px;
  }

  .process_top {
    font-size: 28px;
  }

  #process .process_bg {
    padding-bottom: 30px;
  }

  .product_container {
    padding: 20px;
  }

  .product_txt {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: left;
  }

  .product_ttl {
    font-size: 2.5rem;
    width: 90%;
  }

  .product_box {
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product_data {
    display: block;
  }


  .data_left,
  .data_right {
    width: auto;
  }

  .product_data_ttl {
    margin: 0 auto 10px;
    text-align: center;
  }

  .data_left p:nth-of-type(1) {
    margin-bottom: 10px;
  }

  .data_left p:nth-of-type(2) {
    margin-bottom: 30px;
  }

  .flow_img img {
    border-radius: 10px;
  }

  .data_right {
    width: auto;
    margin-right: 0;
  }

  .box2 .flow_img4 {
    border-radius: 10px;
  }

  .box2_inner2 li img {
    border-radius: 10px;
  }

  .box2_inner3 li img {
    border-radius: 10px;
  }

  .box2_inner3 li {
    margin-right: 15px;
    width: calc((100% - 45px)/4);
  }

  .box2 .flow_img4 {
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .box2_inner3 {
    margin-bottom: 20px;
  }

  .process_box {
    padding: 40px 20px;
  }

  .right_txt {
    margin-bottom: 20px;
  }

  #message {
    display: block;
  }

  .message_txt {
    margin-bottom: 20px;
  }

  .message_txt,
  .message_photo {
    width: auto;
  }

  .product_data_ttl img {
    width: 200px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 600px)
----------------------------------------------------------- */
@media(max-width: 600px) {
  #header:after {
    height: 20px;
    background-size: auto 20px;
  }

  #about {
    margin: 0 auto 100px;
  }

  .about_title {
    font-size: 2.5rem;
  }

  .about_ttl {
    background-size: auto 20px;
    padding: 40px 0 30px;
  }

  .about_ttl .about_img {
    width: 30%;
  }

  .about_txt {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .alignment {
    padding: 30px 20px;
  }

  .alignment_ttl {
    font-size: 2.5rem;
  }

  .alignment_box {
    align-items: center;
    flex-direction: column;
  }

  .alignment_list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .box_inner2 ul {
    padding: 10px;
  }

  .alignment_list:nth-of-type(2) {
    margin-bottom: 0;
  }

  #flow {
    margin: 0 auto 120px;
  }

  .flow_header {
    height: 160px;
    margin-bottom: 60px;
  }

  .flow_header .flow_header_img1 {
    width: 33%;
    left: -10px;
  }

  .flow_header .flow_header_img2 {
    right: 0;
    width: 20%;
  }

  .flow_box {
    padding: 30px 0 10px;
    align-items: center;
    flex-direction: column;
  }

  .flow_arrow img {
    width: 55px;
  }

  .flow_ttl {
    margin-bottom: 25px;
    text-align: left;
  }

  .flow-grid p {
    text-align: left;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .box2_inner3 {
    margin-bottom: 0;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .box2_inner3 li {
    margin-right: 20px;
    margin-bottom: 15px;
    width: calc((100% - 20px)/2);
  }

  .box2_inner3 li img {
    border-radius: 8px;
  }

  .box2 .flow_img4 {
    margin-bottom: 15px;
  }

  #process {
    padding: 30px 0;
  }

  .process_box {
    padding: 40px 20px 20px;
  }

  .process_inner {
    margin-bottom: 20px;
  }

  .process_arrow {
    margin: 0 auto 0px;
  }

  .process_sub_ttl {
    font-size: 2.5rem;
  }

  .process_sub_ttl {
    margin-bottom: 10px;
  }

  .product_ttl {
    font-size: 2.2rem;
  }

  .product_txt br {
    display: none;
  }

  .right_txt br {
    display: none;
  }

  .about_ttl a {
    width: 80%;
    padding: 10px 20px;
  }

  .about_ttl a p {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------
@media (max-width: 500px)
----------------------------------------------------------- */
@media(max-width: 500px) {
  .alignment_ttl {
    font-size: 2rem;
  }

  .product_data_ttl img {
    width: 170px;
  }

  .data_price {
    font-size: 2.2rem;
  }

  .product_container {
    padding: 30px 15px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 428px)
----------------------------------------------------------- */
@media(max-width: 430px) {
  #header {
    height: 56.25vh;
  }

  #shop .shop_ttl {
    font-size: 2.4rem;
  }

  .about_txt {
    font-size: 1.8rem;
  }

  #primary {
    margin: 50px 0 20px;
  }

  #primary .primary_img {
    margin: 0 auto 0px;
  }

  .movie h2 {
    font-size: 30px;
  }

  .cart li {
    margin: 0 10px;
  }

  .alignment {
    padding: 25px 15px;
    border-radius: 10px;
    border: 3px solid #fe6701;
  }

  .alignment_ttl {
    padding-bottom: 7px;
    background-image: linear-gradient(to right, #fe6701, #fe6701 13px, transparent 13px);
    background-size: 17px 2px;
    margin-bottom: 20px;
  }

  .alignment_img {
    width: 85%;
  }

  .box_inner ul li {
    margin-left: 25px;
  }

  .flow {
    padding-top: 20px;
    margin-bottom: 50px;
  }

  #flow {
    margin: 0 auto 90px;
  }

  .flow_box {
    padding: 30px 0 0;
  }

  .flow_header {
    height: 140px;
    margin-bottom: 50px;
  }

  .flow_header_ttl {
    font-size: 2.4rem;
  }

  .flow_header .flow_header_img1 {
    bottom: -20px;
  }

  .flow_header .flow_header_img2 {
    bottom: -20px;
  }

  .flow_inner p {
    margin-bottom: 20px;
  }

  .flow_catch {
    margin-bottom: 20px;
  }

  #header .title {
    width: 65vw;
  }

  #header .biwako {
    width: 120px;
    position: absolute;
    bottom: 40px;
    right: 30px;
  }

  #header:after {
    height: 20px;
    background-size: auto 20px;
  }

  .box2_inner3 li {
    margin-right: 15px;
    width: calc((100% - 15px)/2);
  }

  #process {
    padding: 10px 0;
    margin: 0 auto 30px;
    background-size: auto 10px;
  }

  .process_top {
    font-size: 20px;
    padding: 20px 0;
    margin-bottom: 30px;
  }

  #process .process_bg {
    padding-bottom: 0;
  }

  .process_box {
    padding: 20px 15px;
  }

  .process_sub_ttl {
    font-size: 2rem;
  }

  .process_inner li {
    margin-right: 6px;
  }

  .process_arrow img {
    width: 60px;
  }

  .product_container {
    border-radius: 10px;
  }

  .product_ttl {
    font-size: 2rem;
    width: auto;
    margin: 0 auto 30px;
  }

  .product_ttl span {
    display: block;
  }

  .product_txt {
    text-align: left;
  }

  .data_left p {
    font-size: 2.5rem;
  }

  .data_left img:nth-of-type(2) {
    width: auto;
    margin-bottom: 30px;
  }

  .data_right dl {
    padding: 10px;
  }

  .product_box {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product_box li p {
    font-size: 1.4rem;
  }

  #header:after {
    height: 15px;
    background-size: auto 15px;
  }

  #about {
    margin: 0 auto 50px;
  }

  .about_ttl {
    background-size: auto 15px;
  }

  .about_ttl a p {
    margin-right: 15px;
  }

  .flow04 .flow04_txt01 {
    text-align: left;
  }

  .box_inner {
    margin-bottom: 10px;
  }

  .alignment_arrow {
    margin-bottom: 5px;
  }

  .flow01 .flow_box {
    padding: 20px 0 20px;
  }

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

  .insta_btn2 {
    border-radius: 15px;
    height: 70px;
    width: 240px;
    font-size: 2.8rem;
    line-height: 70px;
  }

  .about_ttl {
    margin-bottom: 40px;
  }

  .product_data_ttl img {
    width: 140px;
  }

  .data_price {
    font-size: 2rem;
  }

  .data_price span {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------
@media (max-width: 375px)
----------------------------------------------------------- */
@media(max-width: 375px) {
  .movie h2 {
    font-size: 28px;
  }

  .about_ttl a p {
    font-size: 1.3rem;
  }
}