@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: Yu Mincho;
  color: #333;
  text-decoration: none;
  margin: 0;
}

/* SP版のスタイル（ブレイクポイントを指定） */
html {
  font-size: 16px;
}
@media screen and (max-width: 520px) {
  html {
    min-width: 320px;
    font-size: 14px;
  }
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .wrap {
    width: 900px;
  }
}
@media screen and (max-width: 959px) {
  .wrap {
    width: 91%;
  }
}
@media screen and (max-width: 520px) {
  .wrap {
    width: 91%;
  }
}

li {
  cursor: pointer;
}

nav {
  height: 100%;
}
nav ul {
  display: flex;
  width: 24.6875rem;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  color: #FFF;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 133.333% */
  list-style: none;
  position: relative;
  padding-bottom: 10px;
}
nav ul li i {
  color: #FFF;
  font-size: 1.5rem;
}
nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  /* ラインの初期幅 */
  height: 2px;
  /* ラインの高さ */
  background-color: white;
  transition: width 0.3s;
  /* ラインのトランジションを設定 */
}
nav ul li:hover:after {
  width: 100%;
  /* ホバー時にラインを100％の長さに伸ばす */
}
nav ul li a {
  color: white;
}

.hamburger {
  position: fixed;
  z-index: 5;
  background-color: rgb(255, 255, 255);
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  padding-top: 10vh;
  top: 0;
}
.hamburger.off {
  display: none;
}
.hamburger .hamburger-wrap {
  position: relative;
  z-index: 5;
  background-image: url(../././../takase_img/menu_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 90%;
  height: 80vh;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .hamburger .hamburger-wrap {
    border-radius: 0 0 20px 20px;
  }
}
.hamburger .hamburger-wrap .close-icon {
  width: 100%;
  height: 30px;
  position: relative;
  padding: 5%;
}
.hamburger .hamburger-wrap .line {
  position: absolute;
  width: 10%;
  height: 2px;
  background-color: white;
  transform-origin: center;
  right: 20px;
  bottom: 0%;
}
@media screen and (max-width: 959px) {
  .hamburger .hamburger-wrap .line {
    width: 6%;
    right: 45px;
  }
}
.hamburger .hamburger-wrap .line1 {
  transform: rotate(45deg);
}
.hamburger .hamburger-wrap .line2 {
  transform: rotate(-45deg);
}
.hamburger .hamburger-wrap img {
  display: block;
  width: 30%;
  margin: 30px auto;
}
.hamburger .hamburger-wrap nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: auto;
}
.hamburger .hamburger-wrap nav ul li a {
  font-size: 1.2rem;
}
.hamburger .hamburger-wrap nav ul li::after {
  content: none;
}
.hamburger .hamburger-wrap nav .button {
  width: 15.25rem;
  height: 3.625rem;
  flex-shrink: 0;
  border: 1px solid #DFB365;
  background: #DFB365;
  padding: 0.3rem 2rem;
  margin: 20px auto;
}
.hamburger .hamburger-wrap nav .button a,
.hamburger .hamburger-wrap nav .button span {
  display: flex;
  justify-content: center;
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
}
@media screen and (max-width: 959px) {
  .hamburger .hamburger-wrap nav .button a,
  .hamburger .hamburger-wrap nav .button span {
    font-size: 1rem;
  }
}
.hamburger .hamburger-wrap nav .button span {
  padding: 0;
}

header {
  background-color: #00488F;
  width: 100%;
  height: 5rem;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
}
header .wrap {
  max-width: 1040px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 520px) {
  header .wrap {
    width: 91%;
  }
}
header .wrap .header-left {
  display: flex;
  align-items: center;
  height: 100%;
}
header .wrap .header-left img {
  width: 3.3rem;
  height: 3.2rem;
  margin-right: 1.4rem;
  border-radius: 8.1rem;
  background: white;
}
header .wrap .header-left .button {
  width: 15.25rem;
  height: 3.625rem;
  flex-shrink: 0;
  border: 1px solid #DFB365;
  background: #DFB365;
  padding: 0.3rem 2rem;
}
header .wrap .header-left .button a,
header .wrap .header-left .button span {
  display: flex;
  justify-content: center;
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
}
@media screen and (max-width: 959px) {
  header .wrap .header-left .button a,
  header .wrap .header-left .button span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  header .wrap .header-left .button {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  header nav {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  header nav {
    display: none;
  }
}
header .navbar {
  display: none;
}
@media screen and (max-width: 959px) {
  header .navbar {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  header .navbar .hamburger-line {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  header .navbar .hamburger-line span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
  }
}
header .button-sp {
  display: none;
}
@media screen and (max-width: 520px) {
  header .button-sp {
    display: block;
    width: 15.25rem;
    height: 3.625rem;
    flex-shrink: 0;
    border: 1px solid #DFB365;
    background: #DFB365;
    padding: 0.3rem 2rem;
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 60px;
    padding-top: 10px;
  }
  header .button-sp a,
  header .button-sp span {
    display: flex;
    justify-content: center;
    color: #333;
    text-align: center;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 133.333% */
  }
}
@media screen and (max-width: 520px) and (max-width: 959px) {
  header .button-sp a,
  header .button-sp span {
    font-size: 1rem;
  }
}

main .FV {
  height: 32.8rem;
  flex-shrink: 0;
  background-image: url(../././../takase_img/fv_bg.png);
  background-size: cover;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  main .FV {
    height: 70vh;
  }
}
main .FV h1 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 32.8rem;
}
main .FV h1 img {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 23rem;
}
@media screen and (max-width: 520px) {
  main .FV h1 img {
    width: 18.8rem;
  }
}
main .about {
  background-color: #FFFBF0;
  background-image: url(../././../takase_img/about_bg1.png);
  padding: 100px 0 11.5rem 0;
  position: relative;
  z-index: -2;
}
main .about h2 {
  color: #00488F;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  writing-mode: vertical-lr;
  letter-spacing: 0.35em;
  line-height: 3rem;
  /* 137.143% */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 959px) {
  main .about h2 {
    font-size: 1.7rem;
    line-height: 2.1rem;
  }
}
@media screen and (max-width: 520px) {
  main .about h2 {
    font-size: 1.7rem;
    line-height: 2.1rem;
  }
}
main .about h2 span {
  color: #00488F;
  background-color: #FFFAE7;
  display: flex;
  width: 4.1rem;
  height: 9.9rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  main .about h2 span {
    font-size: 1.7rem;
    line-height: 2.1rem;
    width: 3rem;
    height: 8rem;
  }
}
@media screen and (max-width: 520px) {
  main .about h2 span {
    font-size: 1.7rem;
    line-height: 2.1rem;
    width: 3rem;
    height: 8rem;
  }
}
main .about .wrap {
  display: flex;
}
@media screen and (max-width: 520px) {
  main .about .wrap {
    display: block;
  }
}
main .about .wrap p {
  color: #00488F;
}
@media screen and (max-width: 959px) {
  main .about .pc {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  main .about .pc {
    display: none;
  }
}
main .about .center {
  width: 19.2%;
  display: flex;
  text-align: center;
  margin: 0 auto;
}
main .about .center h2 {
  height: max-content;
}
@media screen and (max-width: 520px) {
  main .about .center {
    position: absolute;
    top: 2.7rem;
  }
}
main .about .about-left {
  position: relative;
  width: 40.4%;
}
main .about .about-left img {
  width: 95.2%;
  margin-top: 7rem;
}
main .about .about-left h3 {
  width: 73.8%;
  position: absolute;
  top: 38%;
  left: -25%;
}
@media screen and (max-width: 1280px) {
  main .about .about-left h3 {
    width: 60%;
    position: absolute;
    top: 42%;
    left: -6%;
  }
}
main .about .about-left h3 .h3-title {
  display: block;
  width: 100%;
  height: auto;
}
main .about .about-left h3::after {
  content: "旬の魚介類と貝が彩るお刺身からパスタまで、多彩な味わいをお楽しみいただけます。";
  position: absolute;
  bottom: 10%;
  left: 38%;
  color: #00488F;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem;
  /* 120% */
  width: 28.1rem;
}
@media screen and (max-width: 1280px) {
  main .about .about-left h3::after {
    font-size: 1.3rem;
    width: 20rem;
    bottom: 0%;
  }
}
main .about .about-left p {
  width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem;
  /* 120% */
}
main .about .about-rigth {
  width: 40.4%;
  position: relative;
}
main .about .about-rigth .img-sakanakai {
  width: 47.6%;
  object-fit: cover;
  aspect-ratio: 18/25;
  /* アスペクト比を指定（16:9） */
  overflow: hidden;
  margin-top: 17rem;
}
main .about .about-rigth div::before {
  content: "";
  position: absolute;
  background-image: url(../././../takase_img/fish_l.png);
  width: 20rem;
  height: 20rem;
  left: -10%;
  background-size: cover;
  background-position: right;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  main .about .about-rigth div::before {
    width: 60%;
    height: 30%;
    left: 40%;
    bottom: -10%;
  }
}
main .about .about-rigth h3 {
  width: 73.8%;
  margin: auto 0 auto auto;
  position: relative;
  top: 0%;
  right: -13%;
}
@media screen and (max-width: 1280px) {
  main .about .about-rigth h3 {
    width: 60%;
    margin: auto 0 auto auto;
    right: 0;
  }
}
main .about .about-rigth h3 .h3-title {
  display: block;
  width: 100%;
  height: auto;
}
main .about .about-rigth h3::after {
  content: "店主が目利きした極上の魚介類と貝、新鮮な味わいをご堪能ください。";
  text-align: right;
  position: absolute;
  bottom: 8%;
  right: 18%;
  color: #00488F;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem;
  /* 120% */
  width: 26rem;
}
@media screen and (max-width: 1280px) {
  main .about .about-rigth h3::after {
    font-size: 1.3rem;
    width: 20rem;
    bottom: -18%;
  }
}
@media screen and (max-width: 520px) {
  main .about {
    padding: 6rem 20px;
  }
}
main .about .wrap.sp {
  display: none;
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main .about .wrap.sp {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp .about-top {
    display: flex;
    position: relative;
  }
}
@media screen and (max-width: 520px) {
  main .about .wrap.sp .about-top {
    display: flex;
    position: relative;
  }
}
main .about .wrap.sp .about-top h2 {
  width: 12%;
  height: max-content;
  margin: 0;
}
main .about .wrap.sp .about-top .about-rigth {
  width: 88%;
  text-align: end;
  position: relative;
}
main .about .wrap.sp .about-top .about-rigth h3 {
  width: 80%;
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp .about-top .about-rigth h3 {
    right: 6%;
    width: 50%;
  }
}
main .about .wrap.sp .about-top .about-rigth h3 .h3-title {
  display: block;
  margin-left: 20%;
  margin-bottom: 10%;
}
main .about .wrap.sp .about-top .about-rigth h3::after {
  content: "店主が目利きした極上の魚介類と貝、新鮮な味わいをご堪能ください。";
  text-align: right;
  position: absolute;
  top: 70%;
  right: 0%;
  width: 100%;
  color: #00488F;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 120% */
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp .about-top .about-rigth h3::after {
    width: 120%;
  }
}
@media screen and (max-width: 520px) {
  main .about .wrap.sp .about-top .about-rigth h3::after {
    font-size: 1.1rem;
    width: 185%;
  }
}
main .about .wrap.sp .about-top .about-rigth .suiso {
  display: block;
  width: 85%;
  height: auto;
  margin-top: 2rem;
  margin-left: 10%;
}
main .about .wrap.sp .center-sp {
  position: relative;
  width: 88%;
}
main .about .wrap.sp .center-sp h3 {
  width: 80%;
  height: auto;
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp .center-sp h3 {
    width: 50%;
  }
}
main .about .wrap.sp .center-sp h3 .h3-title {
  display: block;
  width: 100%;
  height: auto;
}
main .about .wrap.sp .center-sp h3::after {
  content: "旬の魚介類と貝が彩るお刺身からパスタまで、多彩な味わいをお楽しみいただけます。";
  text-align: left;
  position: absolute;
  top: 20%;
  left: 8%;
  width: 100%;
  color: #00488F;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 120% */
}
@media screen and (max-width: 520px) {
  main .about .wrap.sp .center-sp h3::after {
    font-size: 1.1rem;
  }
}
main .about .wrap.sp .center-sp div {
  width: 100%;
  margin-left: 10%;
  margin-top: 2rem;
}
main .about .wrap.sp .center-sp div .img-sakanakai {
  width: 48%;
  object-fit: cover;
  aspect-ratio: 18/25;
  /* アスペクト比を指定（16:9） */
  overflow: hidden;
}
main .about .wrap.sp .center-sp::before {
  content: "";
  position: absolute;
  background-image: url(../././../takase_img/fish_l.png);
  width: 70%;
  height: 35%;
  bottom: -45%;
  right: 0%;
  background-size: cover;
  background-position: right;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  main .about .wrap.sp .center-sp::before {
    display: none;
  }
}
main .about-bottom {
  margin: 13rem auto 17rem;
  text-align: center;
  max-width: 1040px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 96% */
}
@media screen and (max-width: 959px) {
  main .about-bottom {
    display: flex;
    flex-direction: column-reverse;
    width: 91%;
  }
}
@media screen and (max-width: 520px) {
  main .about-bottom {
    display: flex;
    flex-direction: column-reverse;
    margin: 13rem auto 2rem;
  }
}
main .about-bottom p {
  color: #00488F;
}
@media screen and (max-width: 959px) {
  main .about-bottom p {
    width: 100%;
    text-align: start;
    padding: 5px;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7rem;
    /* 150% */
  }
}
@media screen and (max-width: 520px) {
  main .about-bottom p {
    width: 100%;
    text-align: end;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7rem;
    /* 150% */
  }
}
main .about-bottom .img-box {
  position: relative;
  width: 78%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 2.7rem;
}
@media screen and (max-width: 959px) {
  main .about-bottom .img-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  main .about-bottom .img-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
}
main .about-bottom .img-box::before {
  content: "";
  position: absolute;
  background-image: url(../././../takase_img/fish_r.png);
  width: 20rem;
  height: 20rem;
  top: -120%;
  left: 5%;
  z-index: -1;
  background-size: cover;
  background-position: right;
  /* 背景画像がテキストより背面に表示されるように */
}
@media screen and (max-width: 520px) {
  main .about-bottom .img-box::before {
    width: 50%;
    height: 50%;
    top: -60%;
    left: 0;
  }
}
main .about-bottom img {
  width: 31.4%;
}
@media screen and (max-width: 959px) {
  main .about-bottom img {
    width: 47.7%;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 520px) {
  main .about-bottom img {
    width: 47.7%;
    padding-bottom: 1.5rem;
  }
}
main #menu {
  margin-bottom: 30%;
}
@media screen and (max-width: 520px) {
  main #menu {
    padding-top: 10%;
  }
}
main .menu {
  position: relative;
}
main .menu::after {
  content: "";
  position: absolute;
  /* 絶対位置にする */
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  padding-bottom: 31rem;
  background-image: url(../././../takase_img/oshinagaki_bg.png);
  background-size: cover;
  background-repeat: repeat-y;
  z-index: -1;
  /* 背面に表示する */
}
main .menu .wrap {
  position: relative;
}
@media screen and (max-width: 959px) {
  main .menu .wrap {
    position: static;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap {
    position: static;
  }
}
main .menu .wrap h2 {
  position: absolute;
  top: -10%;
  right: 0;
  writing-mode: vertical-lr;
  width: 2.5rem;
  height: 16.9375rem;
  color: #333;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.5rem;
  /* 140% */
  letter-spacing: 0.7rem;
}
@media screen and (max-width: 959px) {
  main .menu .wrap h2 {
    position: absolute;
    top: -2%;
    right: 45%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap h2 {
    position: absolute;
    top: -12%;
    right: 45%;
    font-size: 1.7rem;
  }
}
main .menu .wrap .img-box {
  display: flex;
  width: 68.9%;
}
@media screen and (max-width: 959px) {
  main .menu .wrap .img-box {
    width: 100%;
    margin-top: 40%;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap .img-box {
    width: 100%;
    margin-top: 40%;
  }
}
main .menu .wrap .img-box::after {
  content: "";
  position: absolute;
  background-image: url(../././../takase_img/fish_l.png);
  width: 30%;
  height: 20%;
  top: 8%;
  right: -8%;
  background-size: cover;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  main .menu .wrap .img-box::after {
    top: 8%;
    right: 0%;
  }
}
@media screen and (max-width: 959px) {
  main .menu .wrap .img-box::after {
    top: -18%;
    right: 0%;
    width: 40%;
    height: 15%;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap .img-box::after {
    top: -18%;
    right: 0%;
    width: 40%;
    height: 15%;
  }
}
main .menu .wrap .img-box img {
  width: 80.8%;
  aspect-ratio: 4/3;
}
main .menu .wrap .img-box h3 {
  width: 19.2%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  writing-mode: vertical-lr;
  color: #333;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.8rem;
  /* 131.429% */
  letter-spacing: 1.5rem;
  background: linear-gradient(180deg, rgba(223, 179, 101, 0.6) 0%, rgba(223, 179, 101, 0.22) 100%);
}
@media screen and (max-width: 959px) {
  main .menu .wrap .img-box h3 {
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 122.222% */
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap .img-box h3 {
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 122.222% */
    letter-spacing: 0.2rem;
  }
}
main .menu .wrap .img-box-osashimi {
  width: 100%;
  display: flex;
  margin: 1.5rem 0;
}
main .menu .wrap .img-box-osashimi h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  writing-mode: vertical-lr;
  color: #333;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.8rem;
  /* 131.429% */
  letter-spacing: 1.5rem;
  background: linear-gradient(180deg, rgba(223, 179, 101, 0.6) 0%, rgba(223, 179, 101, 0.22) 100%);
}
@media screen and (max-width: 959px) {
  main .menu .wrap .img-box-osashimi h3 {
    width: 1.2rem;
    text-align: right;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    /* 122.222% */
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 520px) {
  main .menu .wrap .img-box-osashimi h3 {
    width: 1.2rem;
    text-align: right;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    /* 122.222% */
    letter-spacing: 0.2rem;
  }
}
main .menu .wrap .img-box-osashimi .square {
  width: 34.3%;
  aspect-ratio: 1/1;
}
main .menu .menu-box {
  display: flex;
}
main .menu .menu-box.p {
  justify-content: end;
}
@media screen and (max-width: 959px) {
  main .menu .menu-box .img-box.p {
    margin-top: 0;
  }
}
@media screen and (max-width: 520px) {
  main .menu .menu-box .img-box.p {
    margin-top: 0;
  }
}
main .menu .menu-box::after {
  content: "";
  position: absolute;
  background-image: url(../././../takase_img/fish_r.png);
  width: 25rem;
  height: 20rem;
  bottom: 7%;
  left: -15%;
  background-size: cover;
  background-position: right;
  z-index: 0;
  /* 背景画像がテキストより背面に表示されるように */
}
@media screen and (max-width: 1280px) {
  main .menu .menu-box::after {
    width: 20rem;
    height: 15rem;
    bottom: 7%;
    left: -5%;
  }
}
@media screen and (max-width: 959px) {
  main .menu .menu-box::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  main .menu .menu-box::after {
    display: none;
  }
}
main .menu a {
  width: 25rem;
  height: 4.7rem;
  margin: 8.1rem auto 6.2rem;
  padding: 0.7rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #FFF;
  background: #00488F;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  /* 100% */
  border-radius: 50px;
  box-shadow: 3px 3px 5px gray;
}
@media screen and (max-width: 959px) {
  main .menu a {
    width: 100%;
    margin: 1.5rem auto 1.5rem;
    font-size: 1.42857rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
    /* 140% */
  }
}
@media screen and (max-width: 520px) {
  main .menu a {
    width: 100%;
    margin: 1.5rem auto 1.5rem;
    font-size: 1.42857rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
    /* 140% */
  }
}
main .course {
  background-image: url(../././../takase_img/course_bg.png);
  padding: 4.4rem 0;
}
main .course h3 {
  margin: 0;
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 70% */
}
@media screen and (max-width: 520px) {
  main .course h3 {
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
    /* 93.333% */
  }
}
main .course .course-box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  main .course .course-box {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  main .course .course-box {
    display: block;
  }
}
main .course .course-box dl {
  width: 33%;
  margin: 3.8rem auto;
  text-align: center;
}
@media screen and (max-width: 959px) {
  main .course .course-box dl {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main .course .course-box dl {
    width: 100%;
  }
}
main .course .course-box dl:nth-child(2) {
  border-left: 1px solid black;
  border-right: 1px solid black;
}
@media screen and (max-width: 959px) {
  main .course .course-box dl:nth-child(2) {
    border-left: 0px solid black;
    border-right: 0px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 2.1rem 0;
  }
}
@media screen and (max-width: 520px) {
  main .course .course-box dl:nth-child(2) {
    border-left: 0px solid black;
    border-right: 0px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 2.1rem 0;
  }
}
main .course .course-box dl dt {
  color: #333;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 520px) {
  main .course .course-box dl dt {
    font-size: 1.7rem;
    padding-bottom: 10px;
  }
}
main .course .course-box dl dt span {
  font-size: 1.7rem;
}
main .course .course-box dl dd {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
}
@media screen and (max-width: 520px) {
  main .course .course-box dl dd {
    font-size: 1.5rem;
  }
}
main .course p {
  width: 100%;
  margin: 0;
  text-align: right;
  color: #333;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 959px) {
  main .course p {
    border-top: 1px solid black;
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 520px) {
  main .course p {
    border-top: 1px solid black;
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 959px) {
  main .course .pc {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  main .course .pc {
    display: none;
  }
}
main .course .sp {
  display: none;
}
@media screen and (max-width: 959px) {
  main .course .sp {
    font-size: 1.4rem;
    display: block;
    border-top: 0px solid black;
    padding-top: 9rem;
    width: 23.7rem;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  main .course .sp {
    font-size: 1.4rem;
    display: block;
    border-top: 0px solid black;
    padding-top: 9rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
main .contact {
  padding: 8.3rem 0;
  position: relative;
}
main .contact::before {
  position: absolute;
  content: "";
  background-image: url(../././../takase_img/nami2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15.3rem;
  height: 14.1rem;
  top: -0.5%;
}
@media screen and (max-width: 959px) {
  main .contact::before {
    width: 9.5rem;
    height: 8.7rem;
  }
}
@media screen and (max-width: 520px) {
  main .contact::before {
    width: 9.5rem;
    height: 8.7rem;
  }
}
main .contact::after {
  position: absolute;
  content: "";
  background-image: url(../././../takase_img/nami.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15.3rem;
  height: 14.1rem;
  bottom: -0.5%;
  right: 0;
}
@media screen and (max-width: 959px) {
  main .contact::after {
    width: 9.5rem;
    height: 8.7rem;
  }
}
@media screen and (max-width: 520px) {
  main .contact::after {
    width: 9.5rem;
    height: 8.7rem;
  }
}
main .contact .button {
  width: 15.25rem;
  height: 3.625rem;
  flex-shrink: 0;
  border: 1px solid #DFB365;
  background: #DFB365;
  padding: 0.3rem 2rem;
  width: 29rem;
  height: 6.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 5.2rem;
}
main .contact .button a,
main .contact .button span {
  display: flex;
  justify-content: center;
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
}
@media screen and (max-width: 959px) {
  main .contact .button a,
  main .contact .button span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 959px) {
  main .contact .button {
    width: 80%;
    margin: 1rem auto;
    border-radius: 50px;
    box-shadow: 3px 3px 5px gray;
  }
}
@media screen and (max-width: 520px) {
  main .contact .button {
    width: 80%;
    margin: 1rem auto;
    border-radius: 50px;
  }
}
main .contact .button a,
main .contact .button span {
  font-size: 1.5rem;
}
main .contact .button .tel {
  font-size: 1.875rem;
}
main .contact p {
  text-align: center;
  color: #333;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 140% */
}
@media screen and (max-width: 959px) {
  main .contact .pc {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  main .contact .pc {
    display: none;
  }
}
main .contact .sp {
  display: none;
}
@media screen and (max-width: 959px) {
  main .contact .sp {
    display: block;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 520px) {
  main .contact .sp {
    display: block;
    margin-bottom: 0;
  }
}

.info {
  background-color: #FFFBF0;
  padding-bottom: 4.8rem;
}
.info img {
  width: 100%;
}
.info h2 {
  padding: 6.5rem 0 3.5rem;
  color: #333;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 60% */
}
@media screen and (max-width: 959px) {
  .info h2 {
    padding: 5.2rem 0 2.5rem;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.7rem;
    /* 100% */
  }
}
@media screen and (max-width: 520px) {
  .info h2 {
    padding: 5.2rem 0 2.5rem;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.7rem;
    /* 100% */
  }
}
.info .info-wrap {
  max-width: 711px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .info .info-wrap {
    width: 91%;
  }
}
.info .info-wrap .info-box {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box {
    display: block;
  }
}
.info .info-wrap .info-box .info-box-logo {
  width: 34.1%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box .info-box-logo {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box .info-box-logo {
    width: 100%;
  }
}
.info .info-wrap .info-box .info-box-logo img {
  width: 74.8%;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box .info-box-logo img {
    width: 13rem;
    height: 12.7rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box .info-box-logo img {
    width: 13rem;
    height: 12.7rem;
    margin-bottom: 2.5rem;
  }
}
.info .info-wrap .info-box .info-box-logo .button {
  width: 15.25rem;
  height: 3.625rem;
  flex-shrink: 0;
  border: 1px solid #DFB365;
  background: #DFB365;
  padding: 0.3rem 2rem;
  height: 4.1rem;
  padding: 0.6rem;
}
.info .info-wrap .info-box .info-box-logo .button a,
.info .info-wrap .info-box .info-box-logo .button span {
  display: flex;
  justify-content: center;
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box .info-box-logo .button a,
  .info .info-wrap .info-box .info-box-logo .button span {
    font-size: 1rem;
  }
}
.info .info-wrap .info-box .info-box-logo .button span {
  font-size: 1.1rem;
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box .info-box-logo .button {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box .info-box-logo .button {
    display: none;
  }
}
.info .info-wrap .info-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  /* 1frは残りのスペースを均等に割り当てる指定 */
  margin-top: 0;
  color: #333;
  font-family: Yu Mincho;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box dl {
    width: 70%;
    font-size: 1.2rem;
    line-height: 2rem;
    /* 155.556% */
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box dl {
    width: 91%;
    font-size: 1.2rem;
    line-height: 2rem;
    /* 155.556% */
    margin: 0 auto;
  }
}
.info .info-wrap .info-box dl dt,
.info .info-wrap .info-box dl dd {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 959px) {
  .info .info-wrap .info-box dl dt,
  .info .info-wrap .info-box dl dd {
    margin-bottom: 0.7rem;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap .info-box dl dt,
  .info .info-wrap .info-box dl dd {
    margin-bottom: 0.7rem;
  }
}
.info .info-wrap .info-box dl dd {
  margin-left: 50px;
}
.info .info-wrap iframe {
  display: block;
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 959px) {
  .info .info-wrap iframe {
    width: 91%;
    height: 20.1rem;
  }
}
@media screen and (max-width: 520px) {
  .info .info-wrap iframe {
    width: 91%;
    height: 20.1rem;
  }
}

footer {
  margin: 0 auto;
  text-align: center;
  background-color: #00488F;
}
footer p {
  margin: 0;
  padding: 3.8rem 0 1.8rem;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 100% */
}
@media screen and (max-width: 959px) {
  footer p {
    padding: 1.7rem 0 0rem;
    font-size: 1rem;
    line-height: 1.7rem;
  }
}
@media screen and (max-width: 520px) {
  footer p {
    padding: 1.7rem 0 0rem;
    font-size: 1rem;
    line-height: 1.7rem;
  }
}
footer .insta-btn {
  color: #00488F;
  background-color: #FFF;
  margin: 0 auto 1.8rem;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  display: block;
  width: 11.2rem;
  height: 3.3rem;
  border-radius: 50px;
}
@media screen and (max-width: 959px) {
  footer .insta-btn {
    width: 12.8rem;
    height: 3.7rem;
    margin: 0.6rem auto 1.7rem;
    padding: 1rem;
  }
}
@media screen and (max-width: 520px) {
  footer .insta-btn {
    width: 12.8rem;
    height: 3.7rem;
    margin: 0.6rem auto 1.7rem;
    padding: 1rem;
  }
}
footer .insta-btn i {
  color: #00488F;
  margin-right: 0.5rem;
}
@media screen and (max-width: 959px) {
  footer nav {
    width: 91%;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  footer nav {
    width: 91%;
    margin: 0 auto;
    text-align: center;
  }
}
footer nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  footer nav ul {
    width: 91%;
  }
}
@media screen and (max-width: 520px) {
  footer nav ul {
    width: 91%;
  }
}
@media screen and (max-width: 959px) {
  footer nav ul li {
    font-size: 0.8rem;
    line-height: 1.7rem;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 520px) {
  footer nav ul li {
    font-size: 0.8rem;
    line-height: 1.7rem;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 959px) {
  footer nav ul li::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  footer nav ul li::after {
    display: none;
  }
}
footer .copy {
  padding-top: 1.7rem 0 2.1rem;
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
}
@media screen and (max-width: 520px) {
  footer .copy {
    margin-bottom: 60px;
    padding-top: 1.1rem 0 2.1rem;
    font-size: 0.8rem;
    line-height: 1.7rem;
    /* 200% */
  }
}

.menu-html {
  background-color: #FFFBF0;
  padding: 10px;
}
.menu-html nav {
  padding: 10% 0;
}
.menu-html nav h1 {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
.menu-html .slider-2 {
  width: 100%;
  margin-top: 8vh;
  padding: 0;
}
@media screen and (max-width: 520px) {
  .menu-html .slider-2 {
    margin-top: 15vh;
  }
}
.menu-html .slider-2 img {
  margin: 0 auto;
  width: 30%;
}
.menu-html .slider-2 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.menu-html .slider-2 .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #4b4b4b;
  border-width: 3px 3px 0 0;
  opacity: 0.5;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.menu-html .slider-2 .slick-next {
  right: 0;
}
.menu-html .slider-2 .slick-prev {
  left: 0;
}
.menu-html .slider-2 .slick-next::before {
  left: 20px;
}
.menu-html .slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.menu-html .dots-2 .slick-dots {
  text-align: center;
}
.menu-html .dots-2 .slick-dots li {
  display: inline-block;
}
.menu-html .dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.menu-html .dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}
.menu-html .dot {
  display: flex;
  text-align: center;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  background-color: transparent;
  margin: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 520px) {
  .menu-html .dot {
    font-size: 1rem;
  }
}
.menu-html .slick-dots {
  position: absolute;
  top: -13%;
  /* 上部からの位置を調整 */
  left: 50%;
  /* 中央に配置 */
  transform: translateX(-50%);
  /* 中央寄せ */
}
.menu-html .slick-dots li {
  width: auto;
}
@media screen and (max-width: 520px) {
  .menu-html .slick-dots {
    top: -21%;
  }
}/*# sourceMappingURL=style.css.map */