@charset "utf-8";

/*CSSライブラリのインポート*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
p {
  text-align: justify;
}
li {
  list-style: none;
}
header{
  width: 100%;
  max-width: 100vw;
  height: 70px;
  background-color: #F2D022;
  position: fixed;
  z-index: 999;
}
.heading a {
  display: block;
  font-size: 20px;
  font-family: Toppan Bunkyu Midashi Gothic, sans-serif;
  width: 120px;
  margin: 20px;
}

/* =========================
      nav menu
=========================== */
nav{
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

nav > :first-child {
  margin-right: auto;
}

.nav-list{
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.nav-list-item{
  margin: -3px 0px;
  list-style: none;
  line-height: 70px;
  text-align: center;
  color: #333;
}

.nav-list-item a{
  text-decoration: none;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.nav-list-item .border-anime::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  }

.nav-list-item  .border-anime:hover::after {
  transform: scale(1, 1);
  }

.pc-logo{
  display: block;
}

.sm-logo, .sp-nav {
  display: none;
}

#drawer_input {
  display: none;
}

.drawer_open {
  display: none;
}


.btn-contact {
  margin: 0 20px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: #F28D0C;
  width: 175px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  border: none;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  transition: .3s;
  box-shadow: 2px 2px 4px;
}
.btn-contact::before,
.btn-contact::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease .3s;
}
.btn-contact::before {
  right: -60px;
  border-right: 60px solid transparent;
  border-bottom: 60px solid red;
  transform: translateX(-100%);
}
.btn-contact::after {
  left: -60px;
  border-left: 60px solid transparent;
  border-top: 60px solid red;
  transform: translateX(100%);
}
.btn-contact:hover {
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 4px gray;
}
.btn-contact:hover::before {
  transform: translateX(-49%);
}
.btn-contact:hover::after {
  transform: translateX(49%);
}

.nav-list-item a {
  display: inline-block;
  transition: .3s;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: hidden;
}
.nav-list-item a span {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: #F2D022;
  padding: 1px 30px;
  display: inline-block;
  position: relative;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  transition: .4s;
}
.nav-list-item a span:after {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-text);
  padding: 1px 30px;
  color: #fff;
  background-color: #F28D0C;
  display: inline-block;
  transform-origin: 50% 0%;
  transform: translate3d(0, 100%, 0) rotateX(-90deg);
}
.nav-list-item a:hover span {
  transform: translate3d(0, 0, -60px) rotateX(90deg);
}

/* =========================
      main visual
=========================== */
.main-visual{ 
  margin-top: 70px;
  width: 100vw;
  height: 400px;
  background-image: url(./img/30223554_m2.jpg);
  background-size: cover;
  background-position: right;
  position: relative;
  z-index: -1;
}
.main-visual-title{
  color: #FFF;
  text-shadow: 0px 4px 4px #000;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
  padding-top: 150px;
}
.sp420 {
  display: none;
}

.btn-center, .btn-end {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: #F28D0C;
  text-align: center;
  line-height: 70px;
  border: none;
  border-radius: 30px;
  display: inline-block;
  overflow: hidden;
  transition: .3s;
  display: block;
  background: #F28D0C;
  width: 375px;
  height: 70px;
  margin: 80px auto;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 24px;
  position: relative;
  z-index: 0;
  box-shadow: 2px 2px 4px;
}
.btn-center::before,.btn-end::before {
  right: -70px;
  border-right: 70px solid transparent;
  border-bottom: 70px solid red;
  transform: translateX(-100%);
}
.btn-center::after,.btn-end::after{
  left: -70px;
  border-left: 70px solid transparent;
  border-top: 70px solid red;
  transform: translateX(100%);
}
.btn-center::before,
.btn-center::after,.btn-end::before,.btn-end::after{
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
  transition: transform ease .3s;
}
.btn-center::before,.btn-end::before {
  right: -70px;
  border-right: 70px solid transparent;
  border-bottom: 70px solid red;
  transform: translateX(-100%);
}
.btn-center::after,.btn-end::after {
  left: -70px;
  border-left: 70px solid transparent;
  border-top: 70px solid red;
  transform: translateX(100%);
}
.btn-center:hover,.btn-end:hover {
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 4px gray;
}
.btn-center:hover::before,.btn-end:hover::before {
  transform: translateX(-49%);
}
.btn-center:hover::after,.btn-end:hover::after {
  transform: translateX(49%);
}
body {
  position: relative;
  z-index: 0;
}


/* =========================
      セクション
=========================== */
.kodawari, .ad{
  background-color: #FFFCE9;
  padding: 0 26px;
}
.kodawari h2, .menu h2, .ad h2, .faq h2, .end-contents h2,footer h2{
  font-size: 24px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  padding: 86px 0px;
  text-align: center;
  width: 375px;
  margin: 0 auto;
}
.kodawari img,.menu img, .ad img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}
.kodawari-title, .menu-title, .ad-title{
  padding: 16px 0;
  font-size: 18px;
  font-weight: bold;
}
.kodawari-text, .menu-text, .ad-text {
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
}
.kodawari-card, .menu-card, .ad-card{
  padding-top: 30px;
  padding-bottom: 30px;
}
.pdb30 {
  padding-bottom: 30px;
}
.kodawari-contents, .menu-contents, .menu-contents, .ad, .faq {
  padding-bottom: 64px;
}
.pdt30 {
  padding-top: 30px;
}
.menu {
  padding: 0 26px;
}
.ad-m-ttl {
  font-size: 20px;
  color: #F28D0C;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: justify;
  font-weight: bold;
}
.ad-contents span {
  display: inherit;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin: 25px auto 25px;
}
/* =========================
      セクション・FAQ
=========================== */
.accordion_container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion_title {
  background-color: #F2D022;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 9%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.accordion_container:nth-of-type(2) .accordion_title {
    background-color: #F28D0C;
}
.accordion_container:nth-of-type(3) .accordion_title {
    background-color: #F2D022;
}
.accordion_title:hover {
  opacity: .8;
}
.icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.accordion_title.default .icon_wrap {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.accordion_title.default .icon_wrap .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.accordion_title.default.open .icon_wrap .icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion_title.open .icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.accordion_title.default.open .icon_wrap {
  -webkit-transform: rotate(315eg);
  transform: rotate(315deg);
}
.icon:before, .icon:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.accordion_title.default .icon_wrap .icon:before {
  content: none;
}
.accordion_title.open .icon_wrap .icon:before {
  content: none;
}
.accordion_title.default.open .icon_wrap .icon:before {
  content: "";
}
.accordion_title.open .icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion_title.default.open .icon_wrap .icon:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px solid #F2D022;
  border-right: 2px solid #F2D022;
  border-bottom: 2px solid #F2D022;
  box-sizing: border-box;
}
.accordion_inner.default {
  display: block;
}
.accordion_container:nth-of-type(2) .accordion_inner {
  border-left: 2px solid #F28D0C;
  border-right: 2px solid #F28D0C;
  border-bottom: 2px solid #F28D0C;
}
.accordion_container:nth-of-type(3) .accordion_inner {
  border-left: 2px solid #F2D022;
  border-right: 2px solid #F2D022;
  border-bottom: 2px solid #F2D022;
}
.ac_inner_wraper {
  height: 100px;
}
p.txt_a_ac {
  margin: 0;
  padding: 0px 6%;
}
@media screen and (max-width: 425px) {
  .btn-center, .btn-end {
    max-width: 80vw;
  }
  .end-contents h2 {
    max-width: 80vw;
    font-size: 18px;
  }
  .kodawari h2, .menu h2, .ad h2, .faq h2, .end-contents h2, footer h2 {
    width: unset;
  }
}
@media screen and (max-width: 1024px) {
  .accordion_title {
    font-size: 18px;
  }
  .icon_wrap {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 886px) {
  .accordion {
    margin: 0 26px;
  }
  .accordion_title {
    font-size: 16px;
    text-align: left;
    padding: 20px 7%;
  }
  p.txt_a_ac {
    margin: 0;
    padding: 0px 0%;
  }

}

.end-contents {
  background-color: #F2D022;
  padding-bottom: 48px;
}
.end-contents h2 {
  padding-bottom: 0;
}
footer {
  background-color: #F28D0C;
}
.footer-nav {
  flex-direction: column;
}
.nav-list-item-f {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 100;
  padding: 10px 0;
  display: table;
}
.nav-list-item-f a {
  font-size: 20px;
  font-weight: bold;
}
.footer-text p{
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: bold;
}



@media screen and (max-width:420px) {
  .sp420 {
    display: block
  }
}

@media screen and (min-width:886px) {
  .main-visual {
    width: 100%;
  }
  .main-visual {
    background-position: top;
    margin-top: 0;
    padding-top: 100px;
    height: 770px;
    position: inherit;
  }
  .main-visual-title {
    padding-top: 280px;
    font-size: 60px;
  }
  .kodawari h2, .menu h2, .ad h2, .faq h2{
    width: 100%;
    font-size: 40px;
    padding: 86px 0;
  }
  .flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 90px;
  }
  .kodawari-contents, .menu-contents, .ad-contents, .faq {
    width: 780px;
    margin: 0 auto;
  }
  .kodawari img, .menu img, .ad img {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
  .pdb30, .pdt30, .kodawari-card, .menu-card, .ad-card {
    width: 200px;
    height: 402px;
    padding-top: 0;
  }
  .ad-card {
  width: 200px;
  height: unset;
  padding-top: 0;
  }
  p.txr_a_ac {
    padding: 0px 7%;
  }
  .btn {
    right: 10%;
  }
  .btn-end {
    width: 300px;
    height: 70px;
    margin: 0px auto;
    font-size: 20px;
    display: block;
    margin: 48px auto 48px;
    box-shadow: 2px 2px 4px;
  }
  .footer-nav {
    display: none;
  }
  .footer-nav-pc {
    display: flex;
  }
  .nav-list-item-f-pc {
    max-width: 100%;
    margin: auto 0;
    padding: 48px 0px;
    font-size: 20px;
    font-weight: bold;
    line-height: 80px;
  }
  .flex-f {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
  }
  .flex-f h2 {
    text-align: left;
    line-height: 80px;
  }
  .btn-contact-f {
    background-color: #F2D022;
  }
  .nav-list-item-f-pc a {
    display: inline-block;
    transition: .3s;
    perspective: 1000px;
    perspective-origin: 50% 50%;
    vertical-align: bottom;
    overflow: hidden;
  }
  .nav-list-item-f-pc a span {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    background: #F28D0C;
    padding: 1px 30px;
    display: inline-block;
    position: relative;
    transform-origin: 50% 0%;
    transform-style: preserve-3d;
    transition: .4s;
  }
  .nav-list-item-f-pc a span:after {
    position: absolute;
    left: 0;
    top: 0;
    content: attr(data-text);
    padding: 1px 30px;
    color: #fff;
    background-color: #F2D022;
    display: inline-block;
    transform-origin: 50% 0%;
    transform: translate3d(0, 100%, 0) rotateX(-90deg);
  }
  .nav-list-item-f-pc a:hover span {
    transform: translate3d(0, 0, -60px) rotateX(90deg);
  }
 .logo-anime a h2 span{
  font-family: Toppan Bunkyu Midashi Gothic, sans-serif;
 }
  .logo-anime a span{
    display: inline-block;
    color:#333;
    font-size:20px;
    text-decoration:none;
    transition: 1s;
  }
  .logo-anime a span:hover{
    transform: rotateX(360deg);
  }
  .heading a {
    margin: 13px 60px;
  }
}

@media screen and (max-width:885px) {
  html, body, header, nav, main, footer {
    width: 100%;
  }
  .pc-logo, .pc-nav{
    display: none;
}

.sm-logo{
    display: block;
}

  /* =========================
           header
  =========================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
  }
  .nav-list .sp-nav{
    padding: 0;
  }

  /* =========================
        hamburger menu
  =========================== */
   .sp-nav{
    padding: 0;
    display: block;
  }
  .drawer_hidden {
    display: none;
  }
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    cursor: pointer;
    top: 18px;
    right: 26px;
    width: 40px;
    height: 40px;
  }
  .drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span:before {
    bottom: 10px;
  }
  .drawer_open span:after {
    top: 10px;
  }
  #drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  nav {
    height: 100%;
    position: fixed;
    left: -100%;
    background: #F2D022;
    transition: .5s;
    text-align: center;
  }
  .nav-list-item {
    margin: 0 auto;
  }
  .nav-list-item a {
    font-size: 24px;
  }
  .nav-list-item:first-child {
    margin-top: 16px;
  }
  .nav-list-item:last-child {
    width: 277px;
    bottom: 60px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
  .nav-list-item a {
    font-size: 24px;
  }
  #drawer_input:checked~nav {
    left: 0;
  }
  .btn-contact {
    width: 300px;
    height: 70px;
    margin: 0px auto;
    font-size: 20px;
    box-shadow: unset;
  }
  .nav-list-item:last-child {
    width: 100vw;
  }
  .btn-end {
    display: block;
    margin: 48px auto 48px;
    box-shadow: 2px 2px 4px;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav-pc {
    display: none;
  }
}

