@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
/* COMMON
-----------------------------------------------------------------*/
body {
  background-color: #f47676;
  font-family: "Noto Sans JP", serif;
  color: #683b2a;
}

html {
  scroll-padding-top: 100px;
}
@media screen and (max-width: 1365px) {
  html {
    scroll-padding-top: 0;
  }
}

.inner {
  margin: 0 auto;
  position: relative;
}

a {
  -webkit-tap-highlight-color: #683b2a;
  text-decoration: none;
}

*:focus {
  outline: none;
}

#main-img picture img {
  width: 100%;
  max-width: 580px;
  height: auto;
  vertical-align: bottom;
}

footer, #main-img, #contents, nav, .inner {
  max-width: 580px;
}

footer, #banner-area, #howto, .cat-box {
  padding: 48px 0;
}
@media screen and (max-width: 800px) {
  footer, #banner-area, #howto, .cat-box {
    padding: 48px 0;
  }
}

.small-btn-area p a:link, .btn-area p a:link, label .menu-list .navi-button p a:link {
  width: 70%;
  max-width: 400px;
  margin: 0 auto 18px;
  color: #683b2a;
  display: block;
  background-color: #9ed6d8;
  padding: 24px 12px;
  border: 2px solid #ffffff; /**/
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  background-image: url(/common/img/icon_arrow.png);
  background-position: 95% center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 4px 0px 0px rgb(108, 74, 61);
          box-shadow: 0px 4px 0px 0px rgb(108, 74, 61); /**/
}
@media screen and (max-width: 800px) {
  .small-btn-area p a:link, .btn-area p a:link, label .menu-list .navi-button p a:link {
    width: 90%;
  }
}
.small-btn-area p a:visited, .btn-area p a:visited, label .menu-list .navi-button p a:visited {
  color: #683b2a;
  border: 5px solid #ffffff;
}
.small-btn-area p a:hover, .btn-area p a:hover, label .menu-list .navi-button p a:hover {
  background-color: #76d6d6;
}
.small-btn-area p:last-child a, .btn-area p:last-child a, label .menu-list .navi-button p:last-child a {
  margin: 0 auto 0;
}

.mb24 {
  margin-bottom: 24px;
}

.txt-center {
  text-align: center;
}

.pc {
  display: block;
}
@media screen and (max-width: 1365px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1365px) {
  .sp {
    display: block;
  }
}

/* HEADER
-----------------------------------------------------------------*/
header {
  width: 100vw;
  padding: 18px 20px 25px 20px;
  text-align: center;
  background-image: url(../img/header_bg_wave.png);
  background-repeat: repeat-x;
  background-position: bottom;
  z-index: 10;
  position: fixed;
  top: 0;
}
@media screen and (max-width: 1365px) {
  header {
    position: relative;
    top: inherit;
  }
}
@media screen and (max-width: 1365px) {
  header .inner {
    position: relative;
  }
}
@media screen and (max-width: 1365px) {
  header {
    background-image: url(../img/header_bg_wave_sp.png);
    padding: 30px 20px 30px 20px;
  }
}

/* NAVIGATION
-----------------------------------------------------------------*/
nav {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1365px) {
  nav {
    position: absolute;
    top: 0;
  }
}

/* LABEL
-----------------------------------------------------------------*/
/*nav label{
  position: fixed;
  top:0;
  background: #76d6d6;
}*/
.cbox {
  display: none;
}

label .menu {
  position: absolute;
  display: none;
  z-index: 300;
}
@media screen and (max-width: 1365px) {
  label .menu {
    position: fixed;
    display: block;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    background: #9ed6d8;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
            box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
    border: 4px solid #ffffff;
    cursor: pointer;
  }
}

label .hamburger {
  position: absolute;
  top: 25px;
  left: 13px;
  width: 26px;
  height: 2px;
  background: #683b2a;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

label .hamburger:after, label .hamburger:before {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #683b2a;
}

label .hamburger:before {
  top: -10px;
}

label .hamburger:after {
  bottom: -10px;
}

label input {
  display: none;
}

label input:checked + .menu {
  border: 5px solid #ffffff;
  z-index: 300;
}

label input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

label input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
}

label input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*label input:checked + .menu + ul { opacity: 1; }*/
label input:checked + .menu + .menu-list {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 100vw #ffcaca, 0 0 0 100vh #ffcaca;
          box-shadow: 0 0 0 100vw #ffcaca, 0 0 0 100vh #ffcaca;
  background: #ffcaca;
  background-color: #76d6d6 !important; /*★*/
}

@media screen and (max-width: 1365px) {
  label input:not(:checked) + .menu + .menu-list {
    display: none;
  }
  label input:checked + .menu + .menu-list {
    display: block;
  }
}
/*label ul*/
label .menu-list {
  position: fixed;
  width: 580px;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
}
@media screen and (max-width: 1365px) {
  label .menu-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    z-index: 200;
    opacity: 0;
    -webkit-transition: 0.25s 0s ease-in-out;
    transition: 0.25s 0s ease-in-out;
    background-color: #76d6d6;
  }
}
label .menu-list-inner {
  float: right;
  margin-right: -360px;
  margin-top: 190px;
}
@media screen and (max-width: 1365px) {
  label .menu-list-inner {
    float: inherit;
    position: fixed;
    left: 50%;
    top: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-bottom: 30px;
    margin-right: 0;
    margin-top: 0;
    overflow: scroll;
  }
}
label .menu-list-inner h2 {
  width: 300px;
  text-align: left;
}
label .menu-list-inner ul {
  width: 300px;
  background-color: #ffffff;
  padding: 24px 26px 24px;
  border-radius: 16px;
}
@media screen and (max-width: 500px) {
  label .menu-list-inner ul {
    height: 85vh;
    max-height: 640px;
    overflow: scroll;
  }
}
label .menu-list-inner ul li {
  border-bottom: 1px dashed #683b2a;
}
label .menu-list-inner ul li:last-child {
  padding: 22px 0;
  border-bottom: 0;
}
label .menu-list-inner ul li a {
  text-align: left;
  display: block;
  padding: 22px 0;
  color: #683b2a;
  line-height: 100%;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 130%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 500px) {
  label .menu-list-inner ul li a {
    padding: 20px 0;
  }
}
label .menu-list-inner ul li a:hover {
  background-color: #fff6e1;
}
label .menu-list .navi-button p a:link {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /*border: 0;*/
}
label .menu-list .navi-button p a {
  /*&:visited{
      color: $b-color;
      border: 5px solid #ffffff;
  }
  &:hover{
      background-color: #76d6d6;
      transition : 1s;
  }*/
}
label .menu-list .navi-button p.collor2-button a:link {
  border-radius: 999px !important;
  background-color: #ff96b2;
}
label .menu-list .navi-button p.collor2-button a:visited {
  border-radius: 999px;
  background-color: #ff96b2 !important;
}
label .menu-list .navi-button p.collor2-button a:hover {
  border-radius: 999px;
  background-color: #ff82a4 !important;
}

label a {
  margin-bottom: 1em;
  display: block;
  color: #683b2a;
  text-decoration: none;
}

.output {
  background-color: aqua;
  font-weight: bold;
  height: 10vw;
}

.navi-icon {
  width: 14px;
  height: auto;
  margin-left: 10px;
}

.body-fixed {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* CONTENTS
-----------------------------------------------------------------*/
#contents {
  margin: 0px auto;
  padding-top: 100px;
  background-color: #fff6e1;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1365px) {
  #contents {
    margin: -10px auto 0;
    padding-top: 50px;
  }
}
#contents {
  /**border: 2px saddlebrown solid;**/
}

/* MAIN IMAGE
-----------------------------------------------------------------*/
#main-img {
  margin: 0 auto;
  padding-bottom: 18px;
  text-align: center;
}
#main-img-txt {
  margin-top: 40px;
}
@media screen and (max-width: 1365px) {
  #main-img-txt {
    margin-top: 8%;
  }
}
@media screen and (max-width: 1365px) {
  #main-img-txt img {
    width: 100%;
  }
}

@media screen and (max-width: 1365px) {
  .service-img {
    width: 100%;
    min-height: auto;
  }
}

/* OSHIRASE
-----------------------------------------------------------------*/
#oshirase {
  position: fixed;
  width: 580px;
  top: 0;
  z-index: 0;
}
#oshirase-area {
  margin-left: -360px;
  margin-top: 200px;
}
#oshirase-area-title {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
#oshirase-area-list {
  width: 300px;
}
#oshirase-area-list a:link {
  display: inline-block;
  height: 100%;
  height: 100%;
  cursor: pointer;
}
#oshirase-area-list li {
  padding: 20px 0;
  border-bottom: 1px solid #ffffff;
  text-align: left;
}
#oshirase-area-list li p {
  font-size: 0.9rem;
  color: #ffffff;
  text-align: left;
  text-align: justify;
}
#oshirase-area-list li p:first-child {
  margin-bottom: 5px;
}
@media screen and (max-width: 1365px) {
  #oshirase {
    width: 90%;
    padding: 8%;
    margin: 8% auto 0;
    background-color: #ffffff;
    border-radius: 16px;
    position: relative;
    z-index: 10;
  }
  #oshirase-area {
    margin-left: 0;
    margin-top: 0;
  }
  #oshirase-area-title {
    width: 100%;
    border-bottom: 1px solid #a05f4d;
    padding-bottom: 10px;
  }
  #oshirase-area-list {
    width: 100%;
  }
  #oshirase-area-list li {
    padding: 20px 0;
    border-bottom: 1px solid #a05f4d;
  }
  #oshirase-area-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  #oshirase-area-list li p {
    color: #a05f4d;
  }
}

@media screen and (max-width: 1365px) {
  #oshirase-area-title li:first-child img {
    width: 120px;
  }
}

/* OSHIRASE LIST ALL
-----------------------------------------------------------------*/
#oshirase-list-box {
  width: 90%;
  padding: 8%;
  margin: 8% auto 0;
  background-color: #ffffff;
  border-radius: 16px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1365px) {
  #oshirase-list-box {
    width: 100%;
  }
}

#oshirase-list-box .oshirase-area-list {
  width: 100%;
}

#oshirase-list-box .oshirase-area-list li {
  padding: 20px 0px;
  border-top: 1px solid #a05f4d;
}

#oshirase-list-box .oshirase-area-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

#oshirase-list-box .oshirase-area-list li:last-child {
  padding-bottom: 0;
}

#oshirase-list-box .oshirase-area-list li p {
  font-size: 0.9rem;
  color: #a05f4d;
}

#oshirase-list-box .oshirase-area-list li p:first-child {
  margin-bottom: 10px;
  font-weight: 600;
}

/* OSHIRASE CATEGORY COLOR
-----------------------------------------------------------------*/
.oshirase-area-list li p span {
  font-size: 0.7em;
  margin-left: 10px;
  padding: 2px 7px 4px 5px;
  background-color: #bef4ef;
  color: #683b2a;
  font-weight: 600;
  border-radius: 3px;
}

.oshirase-area-list li p span.media {
  background-color: #ffe1fe;
}

.oshirase-area-list li p span.cam {
  background-color: #fff6e1;
}

/* CATEGORY
-----------------------------------------------------------------*/
.cat-box h2 {
  text-align: center;
  margin-bottom: 16px;
}
.cat-box h2 img {
  width: 90%;
  height: auto;
}
.cat-box h2 + p {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1365px) {
  .cat-box h2 + p {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#cat01 {
  background-color: #fcefb1;
  position: relative;
  z-index: 5;
}

#cat02 {
  position: relative;
  z-index: 5;
}

/* HOWTO
-----------------------------------------------------------------*/
.howto-step {
  max-width: 300px;
  text-align: center;
  margin: 0 auto 56px;
}
.howto-step:last-child {
  margin: 0 auto 0;
}
.howto-step div {
  padding: 32px 24px;
  border: 2px solid;
  border-color: #683b2a;
  border-radius: 8px;
  background-color: #ffffff;
}
.howto-step div h3 {
  color: #f47676;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .howto-step div h3 {
    font-size: 1.3em;
  }
}
.howto-step div .howto-txt {
  margin-top: 12px;
  text-align: left;
}
.howto-step div .howto-txt span {
  background-color: #aff4f9;
}

/* CREATOR
-----------------------------------------------------------------*/
#creator {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 1365px) {
  #creator {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#creator.cat-box {
  padding-top: 0;
}

.two-line-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 200;
}
.two-line-box li {
  width: 48%;
  background-color: #ffffff;
  border-radius: 4px;
  margin-bottom: 4%;
  padding: 32px 20px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .two-line-box li {
    padding: 32px 10px;
  }
}
.two-line-box li img {
  margin: 16px auto;
  width: 97%;
  min-height: auto;
}
.two-line-box li h3 {
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .two-line-box li h3 {
    font-size: 16px;
  }
}

/* FRAME HOWTO
-----------------------------------------------------------------*/
/*入れ物*/
#frame-howto {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 1365px) {
  #frame-howto {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#frame-howto.cat-box {
  padding-top: 0;
}

.frame-howto-Box {
  margin-top: 32px;
}

/*ボタンの装飾*/
.frame-howto-Box dt img {
  position: absolute;
  width: 12px;
  height: auto;
  right: 30px;
  top: 48%;
}

/*中身*/
.frame_howto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dashed #683b2a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*&_edit{
      background-color: #ffe1fe;
      padding: 5px;
      border-radius: 5px;
      margin-top: 10px;
      &_textbox{
          display: flex;
          align-items: center;
          div:first-child{
              width: 20px;
              padding: 0;
              margin: 0;

          }

      }
  }*/
}

.frame_howto:first-child {
  padding-top: 30px;
  border-top: 2px dashed #683b2a;
}

.frame_howto:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/*説明*/
.frame_howto_img {
  width: 40%;
}

.frame_howto_txt {
  width: 55%;
}

.frame_howto_img img {
  width: 100%;
  height: auto;
}

.frame_howto_txt p {
  position: relative;
  padding-left: 40px;
}

.frame_howto_txt p span {
  position: absolute;
  left: 0;
}

.frame_howto_txt p span img {
  width: 30px;
  height: auto;
  border-radius: 2px;
  margin-top: 3px;
}

.frame_howto_txt p.normal {
  padding-left: 0;
}

.frame_howto_edit {
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
}

.frame_howto_edit_title {
  font-weight: 600;
}

.edit-menu {
  border-bottom: 1px solid #683b2a;
  padding: 15px 0;
}

.edit-menu p {
  padding-left: 50px;
}

.ico-sub-number {
  height: 18px;
  width: auto;
  vertical-align: bottom;
}

/* BUTTON  
-----------------------------------------------------------------*/
.btn-area {
  padding: 28px 0;
  /*padding-top: 0;*/
  background-color: #fcefb1;
  position: relative;
  z-index: 5;
}

.btn-area-inner {
  padding: 5% 0;
  /*background-color: #ffffff;*/
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  /*border: 5px solid $y-color;*/
}

.small-btn-area p a:link {
  font-size: 15px;
  width: 100%;
  margin: 0 auto 0;
  padding: 12px 8px;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 1365px) {
  .small-btn-area p a:link {
    font-size: 14px;
  }
}

.sub-button p a:link {
  padding: 26px 16px;
  font-size: 12px;
  text-align: left;
}

p.collor2-button a:link {
  border-radius: 999px !important;
  background-color: #ff96b2;
}
p.collor2-button a:visited {
  border-radius: 999px;
  background-color: #ff96b2 !important;
}
p.collor2-button a:hover {
  border-radius: 999px;
  background-color: #ff82a4 !important;
}

/* BANNER
-----------------------------------------------------------------*/
#banner-area {
  background-color: #ffcaca;
}
#banner-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#banner-area ul li:first-child {
  margin-right: 32px;
}
@media screen and (max-width: 1365px) {
  #banner-area ul li img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1365px) {
  #banner-area ul {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* FOOTER
-----------------------------------------------------------------*/
footer {
  background-image: url(../img/footer_bg_wave.png);
  background-position: top;
  background-repeat: repeat-x;
  text-align: center;
  margin: -20px auto 0;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1365px) {
  footer {
    margin-bottom: 110px;
  }
}

@media screen and (max-width: 1365px) {
  footer.btn-area {
    padding: 16px 0;
  }
}
@media screen and (max-width: 800px) {
  footer.btn-area {
    padding: 16px 0;
  }
}
/* BOTTOM BUTTON
-----------------------------------------------------------------*/
#bottom-button {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
  background-color: #f47676;
  padding: 24px 0;
  -webkit-box-shadow: 0px -2px 4px 0px rgba(150, 17, 17, 0.2);
          box-shadow: 0px -2px 4px 0px rgba(150, 17, 17, 0.2);
}
@media screen and (max-width: 1365px) {
  #bottom-button {
    display: block;
  }
}
#bottom-button p.collor2-button a:link {
  border: 6px solid #ffffff !important;
  border-radius: 999px !important;
  background-color: #ff96b2;
}
#bottom-button p.collor2-button a:visited {
  border-radius: 999px;
  background-color: #ff96b2 !important;
}
#bottom-button p.collor2-button a:hover {
  border-radius: 999px;
  background-color: #ff82a4 !important;
}

/* fade-up
-----------------------------------------------------------------*/
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-animation: fadeUp 0.4s ease forwards;
          animation: fadeUp 0.4s ease forwards;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.overview-area__inner, .fade {
  opacity: 0;
}

.is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}