@charset "UTF-8";
/*
Theme Name: Original
Author: Office Aone
Author URI: https://aone-web.net
Description: オリジナルテーマ
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --spacing: 0.05em;
}

* {
  letter-spacing: var(--spacing);
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
@media (width >= 320px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xs-inline-grid {
    display: inline-grid !important;
  }
}
@media (width >= 544px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
}
@media (width >= 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
}
@media (width >= 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
}
@media (width >= 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
}

html {
  font-size: 2.6666666667vw;
  line-height: 1;
}
@media (width >= 768px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #ff7cad;
  text-decoration: underline;
}
@media (width >= 768px) {
  a {
    text-decoration: none;
  }
}
@media (width >= 768px) {
  a:hover {
    text-decoration: underline;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 6rem;
  background-color: #ff7cad;
}
@media (width >= 768px) {
  .header {
    top: var(--wp-admin--admin-bar--height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 6rem;
    color: #ff7cad;
    background-color: #ffe9f5;
  }
}
.header-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (width >= 768px) {
  .header-inner {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-recruit-btn {
  display: none;
}
@media (width >= 768px) {
  .header-recruit-btn {
    margin: 0 1rem 0 auto;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-recruit-btn a {
  line-height: 1;
  padding: 0.8rem 1rem;
  background-color: #ff4949;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
}
.header-recruit-btn a[href^="#"], .header-recruit-btn a[href^="/#"] {
  background-color: #ffb62d;
}
@media (width >= 768px) {
  .header-recruit-btn a[href^="#"]:hover, .header-recruit-btn a[href^="/#"]:hover {
    color: #ffb62d;
    background-color: #fff;
  }
}
.header-recruit-btn a:hover {
  text-decoration: none;
}
@media (width >= 768px) {
  .header-recruit-btn a:hover {
    color: #ff4949;
    background-color: #fff;
  }
}
@media (width >= 768px) {
  .header .menu {
    display: none;
  }
}
.header .menu button {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  height: 6rem;
  padding: 0;
  background-color: transparent;
  border: none;
}
.header .menu button svg {
  width: 5rem;
  height: auto;
  margin-top: -1rem;
  fill: #fff;
}
.header .menu button svg rect {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header .menu button svg rect:nth-child(1) {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.nav-active .header .menu button svg rect:nth-child(1) {
  -webkit-transform: translateY(0) rotate(-225deg);
          transform: translateY(0) rotate(-225deg);
}
.nav-active .header .menu button svg rect:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header .menu button svg rect:nth-child(3) {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.nav-active .header .menu button svg rect:nth-child(3) {
  -webkit-transform: translateY(0) rotate(225deg);
          transform: translateY(0) rotate(225deg);
}
.header .menu button span {
  margin-top: -1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.site-title {
  margin: 0 0.5rem;
}
@media (width >= 768px) {
  .site-title {
    margin: 0 1rem;
  }
}
.site-title img {
  height: 4rem;
}
@media (width >= 768px) {
  .site-title img {
    height: 4rem;
  }
}
.site-data {
  display: none;
}
@media (width >= 768px) {
  .site-data {
    font-size: 1.2rem;
    line-height: 1.4;
    display: block;
  }
}
.site-info {
  display: none;
}
@media (width >= 768px) {
  .site-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-info .mail a {
  display: block;
  padding: 0.2rem 0.6rem;
  margin: 0 0 0 0.5rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  background-color: #ff7cad;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0.1rem 0.1rem 0 #000;
          box-shadow: 0.1rem 0.1rem 0 #000;
}

.global-nav {
  height: 100lvh;
  padding: 1.5rem 2rem 2rem;
  color: #fff;
  background-color: rgba(255, 124, 173, 0.85);
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (width >= 768px) {
  .global-nav {
    height: auto;
    padding: 0;
    background-color: transparent;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.nav-active .global-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.global-nav ul {
  padding: 0;
  margin: 0;
  border-top: 1px dashed #fff;
}
@media (width >= 768px) {
  .global-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 6rem;
    border-top: none;
    border-left: 1px solid #ff7cad;
  }
}
.global-nav ul li {
  border-bottom: 1px dashed #fff;
}
@media (width >= 768px) {
  .global-nav ul li {
    width: 8rem;
    height: 100%;
    border-right: 1px solid #ff7cad;
    border-bottom: none;
  }
}
@media (width >= 768px) {
  .global-nav ul li.active a {
    color: #fff;
    background-color: #ff7cad;
  }
}
.global-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
}
@media (width >= 768px) {
  .global-nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 0;
    font-size: 1.2rem;
    color: #ff7cad;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (width >= 768px) {
  .global-nav ul li a:hover {
    color: #fff;
    background-color: #ff7cad;
  }
}

.global-text {
  display: grid;
  gap: 0.5rem 0;
  padding-right: 5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (width >= 768px) {
  .global-text {
    display: none;
  }
}
.global-text .store {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.2;
}
@media (width >= 768px) {
  .global-text .store {
    font-size: 2rem;
    font-weight: bold;
  }
}

.global-btn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-bottom: 1rem;
}
@media (width >= 768px) {
  .global-btn {
    display: none;
  }
}
.global-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding: 0 0 0.6rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  background-color: #fff;
  border-radius: 0.4rem;
}
.global-btn a.btn-line {
  color: #2bd94b;
  background-color: #e3ffe8;
}
.global-btn a.btn-tel {
  color: #378eff;
  background-color: #d8f5ff;
}
.global-btn a.btn-form {
  color: #ff4ea9;
  background-color: #ffdcf6;
}
.global-btn a.btn-mail {
  color: #9752ff;
  background-color: #ebdeff;
}
.global-btn a img {
  width: 50%;
  margin: auto;
}

main {
  min-height: 150vh;
  padding: 6rem 0 0;
}
@media (width >= 768px) {
  main {
    padding: 6rem 0 0;
  }
}

footer .copyright {
  font-size: 1rem;
  text-align: center;
  padding: 1rem 0;
}

.container {
  padding: 0 2rem;
}
@media (width >= 768px) {
  .container {
    margin: 0 auto;
  }
}
@media (width >= 992px) {
  .container {
    padding: 0;
    margin: 0 auto;
  }
}
.page .container, .single .container, .archive .container {
  max-width: 75rem;
}
.home .container {
  max-width: 128rem;
}

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

.home-contents section {
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (width >= 768px) {
  .home-contents section {
    padding: 3rem 0;
  }
}
.home-contents section:nth-child(2n) {
  background-color: rgba(204, 204, 204, 0.28);
}
.home-contents section .container > :first-child {
  margin-top: 0;
}
.home-contents section .container > :last-child {
  margin-bottom: 0;
}

.page-title {
  padding: 1rem;
  margin: 2rem 0;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background-color: #ff7cad;
  border-radius: 0.5rem;
}

.blog {
  display: grid;
}
@media (width >= 768px) {
  .blog {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    gap: 0 3rem;
  }
}
.blog-left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 1rem;
}
@media (width >= 768px) {
  .blog-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.1rem;
  }
}
.blog-left section {
  padding: 0 0.3rem;
  margin-bottom: 2rem;
}
.blog-left section .page-title {
  margin: 0 -0.3rem 1rem;
}
.blog-right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (width >= 768px) {
  .blog-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.blog a {
  color: #005eeb;
  text-decoration: none;
}
@media (width >= 768px) {
  .blog a:hover {
    text-decoration: underline;
  }
}

.shop-data dl {
  padding: 0;
  margin: 0.5rem 0 0;
}
.shop-data dl dd {
  margin: 0;
}
.shop-link {
  margin-top: 1rem;
}

.newest-list ul {
  display: grid;
  gap: 0.5rem 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.calendar .wp-calendar-table {
  width: 100%;
  border-spacing: 0;
}
.calendar .wp-calendar-table td,
.calendar .wp-calendar-table th {
  padding: 0;
  text-align: center;
}
.calendar .wp-calendar-table thead {
  border-bottom: 1px solid #ccc;
}
.calendar .wp-calendar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.2rem;
  margin-top: 0.2rem;
  border-top: 1px solid #ccc;
}

.monthly-archive ul {
  display: grid;
  gap: 0.5rem 0;
  padding: 0;
  list-style: none;
}

.post-item {
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  border: 0.2rem solid #ff7cad;
}
.post-title {
  padding: 0.5rem 1rem;
  margin: 0 -2rem;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff;
  background-color: #ff7cad;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}
.post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1;
}
.post-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.8rem;
}
.post-category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0 0.7rem;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #ff7cad;
  border-radius: 0.2rem;
}
@media (width >= 768px) {
  .post-img {
    float: left;
    margin: 0 1rem 1rem 0;
  }
}
.post-img img {
  width: 100%;
  height: auto;
}
@media (width >= 768px) {
  .post-img img {
    width: auto;
    max-width: 30rem;
    height: auto;
    max-height: 30rem;
  }
}
.post-content {
  display: none;
}
@media (width >= 768px) {
  .post-content {
    display: block;
  }
}
.single .post-content {
  display: block;
}
.post-content :first-child {
  margin-top: 0;
}
.post-content .alignleft {
  float: left;
  margin: 0 3rem 1rem 0;
}
.post-content .alignright {
  float: right;
  margin: 0 0 1rem 3rem;
}
.post-content .aligncenter {
  display: block;
  margin: 0 auto;
}
@media (width >= 768px) {
  .post-excerpt {
    display: none;
  }
}
.single .post-excerpt {
  display: none;
}
.post-footer {
  clear: both;
  font-size: 1.1rem;
  line-height: 1;
}
.post-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}
.post-footer ul li {
  position: relative;
  padding-left: 2rem;
}
.post-footer ul li::before {
  position: absolute;
  left: 0;
  display: block;
  width: 2rem;
  height: 100%;
  color: #005eeb;
  text-align: center;
  content: "|";
}
.post-footer ul li:first-child::before {
  display: none;
}

.manager-img {
  width: 80%;
  margin: 0 auto;
}
.manager-nickname {
  line-height: 1.6;
}
.manager-comment {
  line-height: 1.6;
}

.contents-title {
  padding: 0.5rem 1rem;
  margin: 0 -2rem;
  font-size: 1.6rem;
  color: #fff;
  background-color: #ff7cad;
}
@media (width >= 768px) {
  .contents-title {
    padding: 0;
    margin: 0;
    font-size: 2.4rem;
    color: #000;
    text-align: center;
    background-color: transparent;
  }
  .contents-title::before, .contents-title::after {
    font-weight: normal;
    content: "|";
  }
  .contents-title::before {
    margin-right: 3rem;
  }
  .contents-title::after {
    margin-left: 3rem;
  }
}

.entry-list {
  padding: 0;
  margin: 0 -2rem;
  list-style: none;
}
@media (width >= 768px) {
  .entry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 18%);
    gap: 0 2.5%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
}
.entry-list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  border-bottom: 1px solid #ff7cad;
}
@media (width >= 768px) {
  .entry-list li {
    border: none;
  }
}
.entry-list li a {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto 10rem;
  padding: 0.5rem 5rem 0.5rem 2rem;
  text-decoration: none;
}
@media (width >= 768px) {
  .entry-list li a {
    display: inherit;
    grid-template-rows: inherit;
    grid-template-columns: unset;
    grid-row: inherit;
    padding: 0;
    color: #000;
    text-decoration: none;
  }
}
.entry-list li a:hover .entry-img {
  opacity: 0.8;
}
.entry-list li a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background-image: url("assets/img/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width >= 768px) {
  .entry-list li a::after {
    display: none;
  }
}
.entry-list li time {
  grid-row: 2/3;
  grid-column: 1/2;
  font-size: 1.3rem;
  color: #000;
}
@media (width >= 768px) {
  .entry-list li time {
    grid-row: unset;
    grid-column: unset;
    font-size: 1.1rem;
  }
}
.entry-list li h2 {
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: self-end;
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #005eeb;
}
@media (width >= 768px) {
  .entry-list li h2 {
    grid-row: unset;
    grid-column: unset;
    align-self: self-start;
    font-weight: bold;
    color: #000;
  }
}
.entry-list li .excerpt {
  display: none;
  color: #000;
}
@media (width >= 768px) {
  .entry-list li .excerpt {
    display: -webkit-box;
    max-height: 4.2rem; /* 最大高さを2行分に設定 */
    overflow: hidden; /* 溢れた部分を隠す */
    text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
    -webkit-line-clamp: 2; /* 最大行数を2行に設定 */
    -webkit-box-orient: vertical; /* 垂直方向に配置 */
  }
}
.entry-list .entry-img {
  grid-row: 1/3;
  grid-column: 2/3;
  aspect-ratio: 1/1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (width >= 768px) {
  .entry-list .entry-img {
    grid-row: unset;
    grid-column: unset;
    aspect-ratio: 3/4;
  }
}
.entry-list .entry-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.entry-list .entry-img.empty {
  overflow: hidden;
  background-color: #ccc;
}
.entry-list .entry-img.empty span {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  background-image: url("assets/img/image.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem auto;
}
@media (width >= 768px) {
  .entry-list .entry-img.empty span {
    background-size: 3rem auto;
  }
}

.entry-link {
  display: grid;
  grid-template-columns: repeat(3, 10rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
  text-align: center;
}

.recruit {
  margin: 2rem 0;
}
@media (width >= 768px) {
  .recruit {
    margin: 0;
  }
}
.recruit dl {
  border-bottom: 1px solid #000;
  padding: 1rem 0;
}
@media (width >= 768px) {
  .recruit dl {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 0 2rem;
    padding: 2rem 0;
    margin: 0 0;
    border-bottom: 1px solid #000;
  }
}
@media (width >= 992px) {
  .recruit dl {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 0 2rem;
    width: 96rem;
    padding: 2rem 0;
    margin: auto;
    border-bottom: 1px solid #000;
  }
}
.recruit dl dt {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (width >= 768px) {
  .recruit dl dt {
    margin-bottom: 0;
  }
}
.recruit dl dd {
  margin-left: 1em;
}
.recruit .sns-link-open img {
  width: 20rem;
}
@media (width >= 768px) {
  .recruit .sns-link-open img {
    width: 20rem;
  }
}
.recruit-slide {
  position: relative;
  margin: 2rem auto;
}
@media (width >= 768px) {
  .recruit-slide {
    margin: 5rem auto;
  }
}
@media (width >= 992px) {
  .recruit-slide {
    width: 96rem;
    margin: 5rem auto;
  }
}
.recruit-slide img {
  width: 100%;
  height: auto;
}
.recruit-slide .swiper {
  padding: 0 0;
}
.recruit-slide .swiper-button-next, .recruit-slide .swiper-button-prev {
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  margin-top: -1.2rem;
}
@media (width >= 768px) {
  .recruit-slide .swiper-button-next, .recruit-slide .swiper-button-prev {
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
  }
}
.recruit-slide .swiper-button-next::after, .recruit-slide .swiper-button-prev::after {
  content: "";
  background-image: url("assets/img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-slide .swiper-button-next {
  right: -2rem;
}
@media (width >= 768px) {
  .recruit-slide .swiper-button-next {
    right: 16rem;
  }
}
@media (width >= 992px) {
  .recruit-slide .swiper-button-next {
    right: 21rem;
  }
}
.recruit-slide .swiper-button-prev {
  left: -2rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (width >= 768px) {
  .recruit-slide .swiper-button-prev {
    left: 16rem;
  }
}
@media (width >= 992px) {
  .recruit-slide .swiper-button-prev {
    left: 21rem;
  }
}

.tainyu {
  margin: 2rem auto;
}
@media (width >= 768px) {
  .tainyu {
    display: grid;
    grid-template-columns: 45rem 1fr;
    gap: 1rem;
    margin: 3rem 0 5rem;
  }
}
@media (width >= 992px) {
  .tainyu {
    grid-template-columns: 58rem 1fr;
    width: 96rem;
    margin: 3rem auto 5rem;
  }
}
.tainyu-banner {
  margin-bottom: 1rem;
}
@media (width >= 768px) {
  .tainyu-banner {
    grid-row: span 2;
  }
}
.tainyu-bottom {
  margin-top: 1rem;
}
@media (width >= 768px) {
  .tainyu-bottom {
    grid-column: span 2;
  }
}
.tainyu-bottom-title {
  padding: 0.5rem 2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #ff3c3c;
}
.tainyu-comment {
  padding: 0.3rem 0.5rem;
  margin: 1rem 1.5rem;
  line-height: 1.5;
  background-color: #fff;
}
.tainyu-salary-title {
  padding: 0.6rem 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #ff7cad;
}
.tainyu-example {
  margin-top: 1rem;
}
@media (width >= 768px) {
  .tainyu-example {
    margin-top: 0;
  }
}
.tainyu-example-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 1rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #4eb8ff;
  border-radius: 0.3rem 0.3rem 0 0;
}
.tainyu-example td,
.tainyu-example th {
  border-color: #4eb8ff;
}
.tainyu-example th span {
  background-color: #4eb8ff;
}
.tainyu :where(table) {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.tainyu :where(table) :where(td),
.tainyu :where(table) :where(th) {
  border: 1px solid #ff7cad;
}
.tainyu :where(table) :where(td) {
  padding: 0.3rem 2rem;
}
.tainyu :where(table) :where(th) {
  width: 40%;
  padding: 0.1rem;
}
.tainyu :where(table) :where(th) span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0.3rem 0;
  color: #fff;
  background-color: #ff7cad;
}

.intro-sub {
  display: grid;
  gap: 2rem;
}
@media (width >= 768px) {
  .intro-sub {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 2rem;
  }
}
.intro-sub-item {
  line-height: 1.8;
}
.intro-sub-image {
  display: inline;
  float: left;
  margin: 0.5rem 2rem 0.5rem 0;
  width: 15rem;
}
@media (width >= 768px) {
  .intro-sub-image {
    width: 18.5rem;
    margin: 0.5rem 2rem 0.5rem 0;
  }
}

.contact {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.contact.active {
  pointer-events: all;
  opacity: 1;
}
.contact-inner {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  position: relative;
  margin: 0 2rem;
}
@media (width >= 768px) {
  .contact-inner {
    margin: 0;
    padding: 5rem 7rem;
  }
}
.contact-inner h1 {
  text-align: center;
  font-size: 2rem;
  border-bottom: 1px dotted #000;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
}
.contact-inner dl {
  display: grid;
  grid-template-columns: 5rem auto;
  margin: 0.5rem 0;
}
@media (width >= 768px) {
  .contact-inner dl {
    grid-template-columns: 7rem auto;
  }
}
.contact-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
  margin: 0 0 2rem;
}
.contact-sns .sns-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.contact-sns .sns-id {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.contact-sns .sns-comment {
  width: 100%;
  line-height: 1;
  text-align: center;
  color: #ff4949;
  font-size: 1.2rem;
}
.contact-desc {
  margin: 2rem 0;
}
.contact-web {
  background-color: #ff7cad;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  line-height: 1;
  display: block;
  margin: 2rem 0 0;
  border: 1px solid #ff7cad;
}
@media (width >= 768px) {
  .contact-web:hover {
    background-color: #fff;
    color: #ff7cad;
    text-decoration: none;
  }
}
.contact-close {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100vw;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.contact-close img {
  width: 100%;
  height: auto;
}

.free {
  margin: 0 2rem;
}
@media (width >= 992px) {
  .free {
    width: 69rem;
    margin: 0 auto;
  }
}
