/* ========================================

  INDEX CSS

======================================== */

/*-----------------------------------------------------------
  PC Styles
----------------------------------------------------------- */
@media screen and (min-width: 1281px) {
  /* main_area */
  #main_area {
    display: flex;
    justify-content: space-between;
    /* width: calc(100% - 160px); */
    margin: 0 auto;
  }
  #main_area .txt {
    position: relative;
    width: 30%;
    min-width: 350px;
    height: 100vh;
    text-align: right;
  }
  #main_area h2 {
    position: absolute;
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
    margin: 0 auto;
    text-align: right;
    right: 60px;
  }
  #main_area .main_video_wrapper {
    width: calc(100% - 30%);
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #main_area .main_video_wrapper .main_video_title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase;
    width: 90%;
    text-align: center;
  }
  #main_area .main_video_wrapper .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  #main_area #btn-play {
    position: absolute;
    bottom: 28px;
    right: 30px;
    cursor: pointer;
  }
  #main_area #btn-play li {
    background: #fff;
    border-radius: 30px;
    padding: 6px;
  }

  /* contents */
  #contents section {
    margin-top: 120px;
    padding-top: 80px;
  }
  #contents .contents_wrapper {
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }
  #contents .contents_tit {
    width: 200px;
  }
  #contents .contents_tit p {
    display: flex;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #contents .contents_tit p span.num::after {
    display: inline-block;
    content: "";
    width: 20px;
    height: 1px;
    background: #3c3835;
    margin: 20px 0;
  }
  #contents .contents_inner {
    width: calc(100% - 200px);
    position: relative;
  }

  .circular-link-container {
    position: absolute;
    bottom: 0;
    right: 55px;
  }

  /* button */
  #contents .bt_more {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    margin: 40px auto 0;
    transition-duration: 0.2s;
    transition-property: color opacity;
  }
  #contents .bt_more a {
    display: block;
  }
  #contents .bt_more.hide {
    opacity: 0;
  }
  #contents .bt_more span {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #3c3835;
    margin-top: 10px;
  }
  #contents .bt_more span::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #4bbe92;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    width: 0;
    transition-duration: 0.3s;
    transition-property: width;
  }
  #contents .bt_more:hover {
    color: #4bbe92;
  }
  #contents .bt_more:hover span::after {
    width: 100%;
  }

  /* blog */
  section#blog {
    margin-top: 60px;
  }
  #blog .entry_list {
    display: flex;
  }
  #blog .entry_list li {
    position: relative;
    width: 22%;
    margin-right: 4%;
  }
  #blog .entry_list li:last-child {
    margin-right: 0;
  }
  #blog .entry_list li .photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #blog .entry_list li .date {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #blog .entry_list li p.tit {
    font-size: 13px;
    margin-top: 15px;
    padding-right: 20px;
    line-height: 2;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
  #blog .btn {
    text-align: center;
  }

  /* about */
  #about .item {
    display: flex;
    width: 100%;
  }
  #about .item.reverse {
    flex-direction: row-reverse;
  }
  #about .item + .item {
    margin-top: 120px;
  }
  #about .item .video_wrapper {
    width: 55%;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
  }
  #about .item .video_wrapper .video {
    position: absolute;
  }
  #about .item .txt {
    position: relative;
    width: 45%;
    min-width: 370px;
  }
  #about .item .txt h3 {
    position: absolute;
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
    margin: 0 auto;
    left: 10%;
  }
  #about .item.reverse .txt {
    text-align: right;
  }
  #about .item.reverse .txt h3 {
    text-align: right;
    right: 10%;
  }
  #about .about_photo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 80px);
    margin-top: 120px;
  }
  #about .about_photo img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
  }
  /* access */
  #access.contents_wrapper {
    margin-top: 120px;
  }
  #access .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 45%;
    position: relative;
    margin-top: 80px;
  }
  #access .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #access .info_area {
    display: flex;
    justify-content: space-between;
  }
  #access .info_area .photo {
    width: 45%;
  }
  #access .info_area .info {
    display: flex;
    align-items: center;
    width: 50%;
  }
  #access .info_area .info table {
    width: 100%;
  }
  #access .info_area .info table th,
  #access .info_area .info table td {
    padding: 15px 5px;
    border-bottom: dotted 1px #dedede;
  }
  #access .info_area .info table tbody tr:first-child th,
  #access .info_area .info table tbody tr:first-child td {
    padding: 0 5px 20px;
  }
  #access .info_area .info table tbody tr:last-child th,
  #access .info_area .info table tbody tr:last-child td {
    border-bottom: none;
    padding: 20px 5px 0;
  }

  /* staff */
  #staff .staff_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #staff .staff_list li {
    position: relative;
    width: 30%;
  }
  #staff .staff_list li .photo {
    width: calc(100% - 24px);
    position: relative;
    overflow: hidden;
    height: 400px;
  }
  #staff .staff_list li .photo img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
  }
  #staff .staff_list li .photo .staff-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #staff .staff_list li .position {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #staff .staff_list li .name_set {
    width: calc(100% - 24px);
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  #staff .staff_list li .name_set .en {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 34px;
    margin-top: -5px;
    opacity: 0.6;
  }
  #staff .staff_list li .name_set .jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  #staff .staff_list li .name_set div {
    display: grid;
  }
  #staff .staff_list li .name_set div a {
    text-align: right;
  }

  /* menu */
  #menu .price_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
  }
  #menu .price_list li {
    width: 30%;
    margin-right: 5%;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: dotted 1px #dedede;
  }
  #menu .price_list li:nth-child(3n) {
    margin-right: 0;
  }
  #menu .price_list li dl {
    display: flex;
    width: 100%;
  }
  #menu .price_list li dl dt {
    width: 65%;
    padding-left: 5px;
  }
  #menu .price_list li dl dd {
    width: 35%;
    text-align: right;
  }

  /* style */
  #style .style_list {
    display: flex;
    flex-wrap: wrap;
  }
  #style .style_list li {
    display: none;
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
  }
  #style .style_list li.active {
    opacity: 1;
  }
  #style .style_list li {
    width: 16%;
    margin-right: 0.8%;
  }
  #style .style_list li:nth-child(6n) {
    margin-right: 0;
  }
  #style .style_list li:nth-child(n + 7) {
    margin-top: 0.8%;
  }
  #style .style_list li a {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-bottom: 126.7%;
    transition-duration: 0.4s;
    transition-property: opacity;
  }
  #style .style_list li a:hover {
    opacity: 0.7;
  }
  #style .btn {
    text-align: center;
  }

  /* recruit */
  #recruit .item {
    display: flex;
    align-items: center;
    width: 100%;
  }
  #recruit .recruit_video_wrapper {
    width: 55%;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
  }
  #recruit .recruit_video_wrapper .video {
    position: absolute;
  }
  #recruit .txt {
    padding-left: 60px;
  }
  #recruit h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
  }
  #recruit table {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-top: 40px;
  }
  #recruit table th {
    padding-right: 20px;
    padding-bottom: 20px;
  }
}

/*-----------------------------------------------------------
  Tablet Styles
----------------------------------------------------------- */
@media screen and (min-width: 901px) and (max-width: 1280px) {
  /* main_area */
  #main_area {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 160px);
    margin: 0 auto;
  }
  #main_area .txt {
    position: relative;
    width: 30%;
    min-width: 350px;
    height: 100vh;
    text-align: right;
  }
  #main_area h2 {
    position: absolute;
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
    margin: 0 auto;
    text-align: right;
    right: 60px;
  }
  #main_area .main_video_wrapper {
    width: calc(100% - 30%);
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #main_area .main_video_wrapper .main_video_title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    width: 90%;
    text-align: center;
  }
  #main_area .main_video_wrapper .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  #main_area #btn-play {
    position: absolute;
    bottom: 28px;
    right: 30px;
    cursor: pointer;
  }
  #main_area #btn-play li {
    background: #fff;
    border-radius: 30px;
    padding: 6px;
  }

  /* contents */
  #contents section {
    margin-top: 100px;
    padding-top: 60px;
  }
  #contents .contents_wrapper {
    width: calc(100% - 80px);
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  #contents .contents_tit {
    width: 80px;
    padding-left: 28px;
  }
  #contents .contents_tit p {
    display: flex;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #contents .contents_tit p span.num::after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 1px;
    background: #3c3835;
    margin: 15px 0;
  }
  #contents .contents_inner {
    width: calc(100% - 80px);
    position: relative;
  }

  .circular-link-container {
    position: absolute;
    bottom: -80px;
    right: 40px;
  }

  /* button */
  #contents .bt_more {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    margin: 40px auto 0;
    transition-duration: 0.3s;
    transition-property: color opacity;
  }
  #contents .bt_more.hide {
    opacity: 0;
  }
  #contents .bt_more span {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #3c3835;
    margin-top: 10px;
  }
  #contents .bt_more span::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #4bbe92;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    width: 0;
    transition-duration: 0.3s;
    transition-property: width;
  }
  #contents .bt_more:hover {
    color: #4bbe92;
  }
  #contents .bt_more:hover span::after {
    width: 100%;
  }

  /* blog */
  section#blog {
    margin-top: 60px;
  }
  #blog .entry_list {
    display: flex;
  }
  #blog .entry_list li {
    position: relative;
    width: 22%;
    margin-right: 4%;
  }
  #blog .entry_list li:last-child {
    margin-right: 0;
  }
  #blog .entry_list li .photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #blog .entry_list li .date {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #blog .entry_list li p.tit {
    font-size: 13px;
    margin-top: 15px;
    padding-right: 20px;
    line-height: 2;
    font-feature-settings: "palt";
  }
  #blog .btn {
    text-align: center;
  }

  /* about */
  #about .item {
    display: flex;
    width: 100%;
  }
  #about .item.reverse {
    flex-direction: row-reverse;
  }
  #about .item + .item {
    margin-top: 120px;
  }
  #about .item .video_wrapper {
    width: 55%;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
  }
  #about .item .video_wrapper .video {
    position: absolute;
  }
  #about .item .txt {
    position: relative;
    width: 45%;
    min-width: 370px;
  }
  #about .item .txt h3 {
    position: absolute;
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
    margin: 0 auto;
    left: 10%;
  }
  #about .item.reverse .txt {
    text-align: right;
  }
  #about .item.reverse .txt h3 {
    text-align: right;
    right: 10%;
  }
  #about .about_photo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 80px);
    margin-top: 120px;
  }
  #about .about_photo li img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
  }
  /* access */
  #access.contents_wrapper {
    margin-top: 120px;
  }
  #access .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 45%;
    position: relative;
    margin-top: 80px;
  }
  #access .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #access .info_area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #access .info_area .photo {
    width: 40%;
  }
  #access .info_area .info {
    display: flex;
    align-items: center;
    width: 55%;
  }
  #access .info_area .info table {
    width: 100%;
  }
  #access .info_area .info table th,
  #access .info_area .info table td {
    padding: 15px 5px;
    border-bottom: dotted 1px #dedede;
  }
  #access .info_area .info table tbody tr:first-child th,
  #access .info_area .info table tbody tr:first-child td {
    padding: 0 5px 15px;
  }
  #access .info_area .info table tbody tr:last-child th,
  #access .info_area .info table tbody tr:last-child td {
    border-bottom: none;
    padding: 15px 5px 0;
  }

  /* staff */
  #staff .staff_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #staff .staff_list li {
    position: relative;
    width: 30%;
  }
  #staff .staff_list li .photo {
    width: calc(100% - 24px);
    position: relative;
    overflow: hidden;
  }
  #staff .staff_list li .photo img {
    width: 100%;
    height: 400px;
    transition: opacity 0.3s ease;
  }
  #staff .staff_list li .photo .staff-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #staff .staff_list li .position {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #staff .staff_list li .name_set {
    width: calc(100% - 24px);
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  #staff .staff_list li .name_set .en {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 28px;
    margin-top: -5px;
    opacity: 0.6;
  }
  #staff .staff_list li .name_set .jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1em;
  }


  /* menu */
  #menu .price_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  #menu .price_list li {
    width: 47.5%;
    margin-right: 5%;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #dedede;
  }
  #menu .price_list li:nth-child(2n) {
    margin-right: 0;
  }
  #menu .price_list li dl {
    display: flex;
    width: 100%;
  }
  #menu .price_list li dl dt {
    width: 65%;
    padding-left: 5px;
  }
  #menu .price_list li dl dd {
    width: 35%;
    text-align: right;
  }

  /* style */
  #style .style_list {
    display: flex;
    flex-wrap: wrap;
  }
  #style .style_list li {
    display: none;
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
  }
  #style .style_list li.active {
    opacity: 1;
  }
  #style .style_list li {
    width: 16%;
    margin-right: 0.8%;
  }
  #style .style_list li:nth-child(6n) {
    margin-right: 0;
  }
  #style .style_list li:nth-child(n + 7) {
    margin-top: 0.8%;
  }
  #style .style_list li a {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-bottom: 126.7%;
    transition-duration: 0.4s;
    transition-property: opacity;
  }
  #style .style_list li a:hover {
    opacity: 0.7;
  }
  #style .btn {
    text-align: center;
  }

  /* recruit */
  #recruit .item {
    display: flex;
    align-items: center;
    width: 100%;
  }
  #recruit .recruit_video_wrapper {
    width: 50%;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden;
  }
  #recruit .recruit_video_wrapper .video {
    position: absolute;
  }
  #recruit .txt {
    padding-left: 50px;
  }
  #recruit h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
  }
  #recruit table {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-top: 40px;
  }
  #recruit table th {
    padding-right: 20px;
    padding-bottom: 20px;
  }
}

/*-----------------------------------------------------------
  Mobile Styles
----------------------------------------------------------- */
@media screen and (min-width: 601px) and (max-width: 900px) {
  /* main_area */
  #main_area {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  #main_area .txt {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 40px;
  }
  #main_area h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2em;
    color: #fff;
  }
  #main_area .main_video_wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 1;
  }
  #main_area .main_video_wrapper .main_video_title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
  }
  #main_area .main_video_wrapper .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  #main_area #btn-play {
    position: absolute;
    bottom: 28px;
    right: 30px;
    cursor: pointer;
  }
  #main_area #btn-play li {
    background: #fff;
    border-radius: 30px;
    padding: 6px;
  }

  /* contents */
  #contents {
    position: relative;
  }
  #contents section {
    margin-top: 80px;
    padding-top: 40px;
  }
  #contents .contents_wrapper {
    width: 90%;
    margin: 0 auto;
  }
  #contents .contents_tit {
    display: flex;
    align-items: center;
  }
  #contents .contents_tit p {
    display: flex;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.1em;
  }
  #contents .contents_tit p span.num::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 18px;
    background: #3c3835;
    margin: 0 14px;
  }
  #contents .contents_inner {
    width: 100%;
    margin-top: 30px;
    position: relative;
  }
  .circular-link-container {
    position: absolute;
    bottom: -80px;
    right: -10px;
  }

  /* button */
  #contents .bt_more {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    margin: 30px auto 0;
    transition-duration: 0.3s;
    transition-property: color opacity;
  }
  #contents .bt_more.hide {
    opacity: 0;
  }
  #contents .bt_more span {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #3c3835;
    margin-top: 8px;
  }
  #contents .bt_more span::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #4bbe92;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    width: 0;
    transition-duration: 0.3s;
    transition-property: width;
  }

  /* blog */
  section#blog {
    margin-top: 60px;
  }
  #blog .entry_list {
    display: flex;
  }
  #blog .entry_list li {
    position: relative;
    width: 22%;
    margin-right: 4%;
  }
  #blog .entry_list li:last-child {
    margin-right: 0;
  }
  #blog .entry_list li .photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #blog .entry_list li .date {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #blog .entry_list li p.tit {
    font-size: 13px;
    margin-top: 15px;
    padding-right: 20px;
    line-height: 1.8;
    font-feature-settings: "palt";
  }
  #blog .btn {
    text-align: center;
  }

  /* about */
  #about .item {
    display: flex;
    width: 100%;
  }
  #about .item.reverse {
    flex-direction: row-reverse;
  }
  #about .item + .item {
    margin-top: 60px;
  }
  #about .item .video_wrapper {
    width: 55%;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
  }
  #about .item .video_wrapper .video {
    position: absolute;
  }
  #about .item .txt {
    position: relative;
    width: 45%;
  }
  #about .item .txt h3 {
    position: absolute;
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2.5em;
    margin: 0 auto;
    left: 10%;
  }
  #about .item.reverse .txt {
    text-align: right;
  }
  #about .item.reverse .txt h3 {
    text-align: right;
    right: 10%;
  }
  #about .about_photo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 60px;
  }
  #about .about_photo li img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  /* access */
  #access.contents_wrapper {
    margin-top: 60px;
  }
  #access .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 45%;
    position: relative;
    margin-top: 60px;
  }
  #access .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #access .info_area {
    display: flex;
    flex-direction: column;
  }
  #access .info_area .photo {
    width: 60%;
    margin: 0 auto;
  }
  #access .info_area .info {
    width: 100%;
    margin-top: 60px;
  }
  #access .info_area .info table {
    width: 100%;
  }
  #access .info_area .info table th,
  #access .info_area .info table td {
    padding: 15px 5px;
    border-bottom: dotted 1px #dedede;
  }
  #access .info_area .info table tbody tr:first-child th,
  #access .info_area .info table tbody tr:first-child td {
    padding: 0 5px 15px;
  }
  #access .info_area .info table tbody tr:last-child th,
  #access .info_area .info table tbody tr:last-child td {
    border-bottom: none;
    padding: 15px 5px 0;
  }

  /* staff */
  #staff .staff_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #staff .staff_list li {
    position: relative;
    width: 30%;
  }
  #staff .staff_list li .photo {
    width: calc(100% - 24px);
    position: relative;
    overflow: hidden;
  }
  #staff .staff_list li .photo img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
  }
  #staff .staff_list li .photo .staff-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #staff .staff_list li .position {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #staff .staff_list li .name_set {
    width: calc(100% - 24px);
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  #staff .staff_list li .name_set .en {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 24px;
    margin-top: -5px;
    opacity: 0.6;
  }
  #staff .staff_list li .name_set .jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  /* menu */
  #menu .price_list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  #menu .price_list li {
    width: 47.5%;
    margin-right: 5%;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #dedede;
  }
  #menu .price_list li:nth-child(2n) {
    margin-right: 0;
  }
  #menu .price_list li dl {
    display: flex;
    width: 100%;
  }
  #menu .price_list li dl dt {
    width: 45%;
    padding-left: 5px;
  }
  #menu .price_list li dl dd {
    width: 55%;
    text-align: right;
  }

  /* style */
  #style .style_list {
    display: flex;
    flex-wrap: wrap;
  }
  #style .style_list li {
    display: none;
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
  }
  #style .style_list li.active {
    opacity: 1;
  }
  #style .style_list li {
    width: 16%;
    margin-right: 0.8%;
  }
  #style .style_list li:nth-child(6n) {
    margin-right: 0;
  }
  #style .style_list li:nth-child(n + 7) {
    margin-top: 0.8%;
  }
  #style .style_list li a {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-bottom: 126.7%;
    transition-duration: 0.4s;
    transition-property: opacity;
  }
  #style .style_list li a:hover {
    opacity: 0.7;
  }
  #style .btn {
    text-align: center;
  }

  /* recruit */
  #recruit .item {
    display: flex;
    align-items: center;
    width: 100%;
  }
  #recruit .recruit_video_wrapper {
    width: 50%;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden;
  }
  #recruit .recruit_video_wrapper .video {
    position: absolute;
  }
  #recruit .txt {
    padding-left: 40px;
  }
  #recruit h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    line-height: 2.5em;
  }
  #recruit table {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 40px;
  }
  #recruit table th {
    padding-right: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  /* main_area */
  #main_area {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;

    top: 60px;
    position: relative;
  }
  #main_area .txt {
    position: relative;
    padding: 30px 0 40px;
    text-align: center;
  }
  #main_area h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2em;
  }
  #main_area .main_video_wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #main_area .main_video_wrapper .main_video_title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.16em;
    color: #ffffff;
    text-transform: uppercase;
    width: 90%;
    text-align: center;
  }
  #main_area .main_video_wrapper .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  #main_area #btn-play {
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
  }
  #main_area #btn-play li {
    background: #fff;
    border-radius: 30px;
    padding: 6px;
  }

  /* contents */
  #contents {
    position: relative;
  }
  #contents section {
    margin-top: 70px;
    padding-top: 30px;
  }
  #contents .contents_wrapper {
    width: 90%;
    margin: 0 auto;
  }
  #contents .contents_tit {
    display: flex;
    align-items: center;
  }
  #contents .contents_tit p {
    display: flex;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.1em;
  }
  #contents .contents_tit p span.num::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 18px;
    background: #3c3835;
    margin: 0 14px;
  }
  #contents .contents_inner {
    width: 100%;
    margin-top: 20px;
    position: relative;
  }
  .circular-link-container {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  /* button */
  #contents .bt_more {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    margin: 30px auto 0;
    transition-duration: 0.3s;
    transition-property: color opacity;
  }
  #contents .bt_more.hide {
    opacity: 0;
  }
  #contents .bt_more span {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #3c3835;
    margin-top: 8px;
  }
  #contents .bt_more span::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #4bbe92;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    width: 0;
    transition-duration: 0.3s;
    transition-property: width;
  }

  /* blog */
  #blog .entry_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #blog .entry_list li {
    position: relative;
    width: 46%;
  }
  #blog .entry_list li:nth-child(n + 3) {
    margin-top: 25px;
  }
  #blog .entry_list li .photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #blog .entry_list li .date {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #blog .entry_list li p.tit {
    font-size: 13px;
    margin-top: 10px;
    padding-right: 20px;
    line-height: 1.8;
    font-feature-settings: "palt";
  }
  #blog .entry_list li:nth-child(5) {
    display: none;
  }
  #blog .btn {
    text-align: center;
  }

  /* about */
  #about .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #about .item.reverse {
    flex-direction: row-reverse;
  }
  #about .item + .item {
    margin-top: 40px;
  }
  #about .item .video_wrapper {
    width: 80%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
  }
  #about .item .video_wrapper .video {
    position: absolute;
  }
  #about .item .txt {
    width: 100%;
    margin-top: 20px;
  }
  #about .item .txt h3 {
    bottom: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    line-height: 2em;
    margin: 0 auto;
    left: 10%;
  }
  #about .item.reverse .txt {
    text-align: right;
  }
  #about .item.reverse .txt h3 {
    text-align: right;
    right: 10%;
  }
  #about .about_photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
  }
  #about .about_photo li {
    width: 50%;
  }

  /* access */
  #access.contents_wrapper {
    margin-top: 60px;
  }
  #access .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 90%;
    position: relative;
    margin-top: 40px;
  }
  #access .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #access .info_area {
    display: flex;
    flex-direction: column;
  }
  #access .info_area .photo {
    width: 100%;
    margin: 0 auto;
  }
  #access .info_area .info {
    width: 100%;
    margin-top: 30px;
  }
  #access .info_area .info table {
    width: 100%;
  }
  #access .info_area .info table th,
  #access .info_area .info table td {
    padding: 15px 5px;
    border-bottom: dotted 1px #dedede;
  }
  #access .info_area .info table tbody tr:first-child th,
  #access .info_area .info table tbody tr:first-child td {
    padding: 0 5px 15px;
  }
  #access .info_area .info table tbody tr:last-child th,
  #access .info_area .info table tbody tr:last-child td {
    border-bottom: none;
    padding: 15px 5px 0;
  }

  /* staff */
  #staff .staff_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #staff .staff_list li {
    position: relative;
    width: 100%;
  }
  #staff .staff_list li .photo {
    width: calc(100% - 20px);
  }

  #staff .staff_list li .photo img {
    width: 100%;
  }

  /* Hide second image on mobile */
  #staff .staff_list li .photo .staff-img-2 {
    display: none;
  }
  #staff .staff_list li .position {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #staff .staff_list li:nth-child(n + 3) {
    margin-top: 30px;
  }
  #staff .staff_list li .name_set {
    width: calc(100% - 20px);
    display: grid;
    margin-top: 15px;
  }
  #staff .staff_list li .name_set .en {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-top: -5px;
    opacity: 0.6;
  }
  #staff .staff_list li .name_set .en br {
    display: none;
  }
  #staff .staff_list li .name_set .jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 5px;
  }

  /* menu */
  #menu .price_list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  #menu .price_list li {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #dedede;
  }
  #menu .price_list li dl {
    display: flex;
    width: 100%;
  }
  #menu .price_list li dl dt {
    width: 65%;
    padding-left: 5px;
  }
  #menu .price_list li dl dd {
    width: 35%;
    text-align: right;
  }

  /* style */
  #style .style_list {
    display: flex;
    flex-wrap: wrap;
  }
  #style .style_list li {
    display: none;
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
  }
  #style .style_list li a {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-bottom: 126.7%;
    transition-duration: 0.4s;
    transition-property: opacity;
  }
  #style .style_list li.active {
    opacity: 1;
  }
  #style .style_list li {
    width: 32%;
    margin-right: 1.8%;
  }
  #style .style_list li:nth-child(3n) {
    margin-right: 0;
  }
  #style .style_list li:nth-child(n + 4) {
    margin-top: 1.8%;
  }
  #style .btn {
    text-align: center;
  }

  /* recruit */
  #recruit .item {
    width: 100%;
  }
  #recruit .recruit_video_wrapper {
    width: 100%;
    padding-bottom: 70%;
    position: relative;
    overflow: hidden;
  }
  #recruit .recruit_video_wrapper .video {
    position: absolute;
  }
  #recruit .txt {
    margin-top: 30px;
  }
  #recruit h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    line-height: 2em;
  }
  #recruit table {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 20px;
  }
  #recruit table th {
    padding-right: 10px;
    padding-bottom: 10px;
  }
}

#menu .photo img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.price_list dl {
  margin-bottom: 5px;
}
.price_list p {
  font-size: 12px;
  padding-left: 5px;
  line-height: 1.5;
  color: #a2a2a2;
}

#about .about_photo img {
  height: 100%;
}

/* 円形テキストとクリックリンク */

.circular-text-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text span {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: 0 100px;
  font-family: "YuGothic", "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.8em;
}

.circular-text span:nth-child(1) {
  transform: rotate(0deg) translateX(-50%);
}
.circular-text span:nth-child(2) {
  transform: rotate(12deg) translateX(-50%);
}
.circular-text span:nth-child(3) {
  transform: rotate(24deg) translateX(-50%);
}
.circular-text span:nth-child(4) {
  transform: rotate(36deg) translateX(-50%);
}
.circular-text span:nth-child(5) {
  transform: rotate(48deg) translateX(-50%);
}
.circular-text span:nth-child(6) {
  transform: rotate(60deg) translateX(-50%);
}
.circular-text span:nth-child(7) {
  transform: rotate(72deg) translateX(-50%);
}
.circular-text span:nth-child(8) {
  transform: rotate(84deg) translateX(-50%);
}
.circular-text span:nth-child(9) {
  transform: rotate(96deg) translateX(-50%);
}
.circular-text span:nth-child(10) {
  transform: rotate(108deg) translateX(-50%);
}
.circular-text span:nth-child(11) {
  transform: rotate(120deg) translateX(-50%);
}
.circular-text span:nth-child(12) {
  transform: rotate(132deg) translateX(-50%);
}
.circular-text span:nth-child(13) {
  transform: rotate(144deg) translateX(-50%);
}
.circular-text span:nth-child(14) {
  transform: rotate(156deg) translateX(-50%);
}
.circular-text span:nth-child(15) {
  transform: rotate(168deg) translateX(-50%);
}
.circular-text span:nth-child(16) {
  transform: rotate(180deg) translateX(-50%);
}
.circular-text span:nth-child(17) {
  transform: rotate(192deg) translateX(-50%);
}
.circular-text span:nth-child(18) {
  transform: rotate(204deg) translateX(-50%);
}
.circular-text span:nth-child(19) {
  transform: rotate(216deg) translateX(-50%);
}
.circular-text span:nth-child(20) {
  transform: rotate(228deg) translateX(-50%);
}
.circular-text span:nth-child(21) {
  transform: rotate(240deg) translateX(-50%);
}
.circular-text span:nth-child(22) {
  transform: rotate(252deg) translateX(-50%);
}
.circular-text span:nth-child(23) {
  transform: rotate(264deg) translateX(-50%);
}
.circular-text span:nth-child(24) {
  transform: rotate(276deg) translateX(-50%);
}
.circular-text span:nth-child(25) {
  transform: rotate(288deg) translateX(-50%);
}
.circular-text span:nth-child(26) {
  transform: rotate(300deg) translateX(-50%);
}
.circular-text span:nth-child(27) {
  transform: rotate(312deg) translateX(-50%);
}
.circular-text span:nth-child(28) {
  transform: rotate(324deg) translateX(-50%);
}
.circular-text span:nth-child(29) {
  transform: rotate(336deg) translateX(-50%);
}
.circular-text span:nth-child(30) {
  transform: rotate(348deg) translateX(-50%);
}

.center-link {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  transition: all 0.3s ease;
}

.center-link a {
  font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
    transform: rotate(-5deg);
    height: 100%;
    display: flex;
    align-items: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .circular-link-container {
    position: absolute;
    bottom: -50px;
    right: 0;
  }
  .circular-text-wrapper {
    width: 160px;
    height: 160px;
  }

  .circular-text span {
    font-size: 12px;
    transform-origin: 0 80px;
  }

  .center-link {
    width: 100px;
    height: 100px;
  }

  .center-link a {
    font-size: 14px;
  }
  #staff .staff_list li .name_set div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    justify-content: space-between;
  }
  #staff .staff_list li .name_set div a {
    text-align: right;
    margin-top: 5px;
  }
}
