@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 18px;
  color: #000;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section,
.section {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
  font-family: "toermip";
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

dd {
  margin-left: 0;
}

iframe {
  vertical-align: middle;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*margin*/
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 999;
    right: 0;
    top: 0;
    background-color: #16bcac;
    border-radius: 0 0 0 5px;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    left: 15px;
    top: 20px;
    transition: all 0.5s;
  }

  .toggle span:first-child {
    margin-top: -10px;
  }

  .toggle span:nth-child(3) {
    margin-top: 10px;
  }

  .toggle::after {
    content: "メニュー";
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    color: #fff;
  }

  .toggle.active::after {
    content: "とじる";
  }

  .toggle.active span:first-child {
    margin-top: 0;
    transform: rotate(45deg);
  }

  .toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .toggle.active span:nth-child(3) {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .gnav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: all 0.5s;
    opacity: 0;
  }

  .gnav.active {
    transform: translateX(0);
    opacity: 1;
  }
}

/*////////////////////////

 user common css

////////////////////////*/

.container,
.container-s {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container-s {
  max-width: 930px;
}

.bold {
  font-weight: bold;
}

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

.t-right {
  text-align: right;
}

.t-under {
  text-decoration: underline;
}

.fz16 {
  font-size: 1.6rem;
}

.hdg01 {
  font-size: 3.6rem;
  color: #16bcac;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 80px;
}

.hdg01 .hdg01__des {
  font-size: 1.4rem;
  font-weight: normal;
  color: #000;
  display: block;
  white-space: nowrap;
}

.hdg02 {
  font-size: 3rem;
  color: #16bcac;
  position: relative;
  padding-left: 20%;
  letter-spacing: 0.2rem;
  margin-bottom: 80px;
  line-height: 1.4;
}

.hdg02 span {
  display: inline-block;
  padding: 0 30px;
  background-color: #fff;
}

.hdg03 {
  font-size: 3rem;
  color: #16bcac;
  text-align: center;
}

.hdg04 {
  border-bottom: 5px solid #16bcac;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 60px;
}

.hdg04 span {
  display: inline-block;
  padding: 15px;
  width: 150px;
  text-align: center;
  background-color: #16bcac;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  border-radius: 15px 15px 0 0;
}

.hdg-wrap {
  position: relative;
  z-index: 1;
  height: 70px;
  margin-bottom: 80px;
}

.hdg-wrap::before,
.hdg02::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #16bcac;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  z-index: -1;
}

.hdg-wrap .hdg01 {
  background-color: #fff;
  position: absolute;
  padding: 0 30px;
  left: 20%;
  top: 0;
  margin-bottom: 0;
}

.btn-more,
.btn-back {
  display: block;
  max-width: 240px;
  background-color: #ffae2f;
  font-size: 2.5rem;
  color: #fff;
  border-radius: 20px;
  padding: 10px 10px 15px;
  line-height: 1.4;
  text-align: center;
  margin: 70px auto 0;
}

.btn-more:hover,
.btn-back:hover {
  background-color: #16bcac;
  opacity: 1;
}

.btn-back {
  font-size: 2.2rem;
  position: relative;
  padding: 13px 10px 15px 30px;
}

.btn-back::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 30px;
  top: 22px;
}

.table01 .table01__th {
  text-align: left;
  padding: 10px 50px;
  vertical-align: text-top;
  border-right: 1px dashed #000;
}

.table01 .table01__td {
  padding: 10px 50px;
}

.table01 tr:not(:last-child) .table01__th,
.table01 tr:not(:last-child) .table01__td {
  border-bottom: 1px dotted #000;
}

.table02 thead .table02__th {
  text-align: center;
  padding: 20px;
  color: #16bcac;
}

.table02 tbody .table02__th {
  color: #ffaa2c;
  text-align: left;
  padding: 15px;
}

.table02 tbody .table02__th a {
  color: #ffaa2c;
  text-decoration: underline;
}

.table02 tbody .table02__td {
  padding: 10px;
  font-size: 1.6rem;
}

.table02 tbody tr:not(:last-child) .table02__th,
.table02 tbody tr:not(:last-child) .table02__td {
  border-bottom: 1px dotted #000;
}

.table03 .table03__th {
  width: 200px;
  text-align: left;
  vertical-align: text-top;
  border-right: 2px dashed #000;
  padding: 20px 10px;
}

.table03 .table03__td {
  font-size: 1.6rem;
  padding: 20px 0 20px 50px;
}

.fade,
.fadeup,
body {
  opacity: 0;
}

.fade.In,
body {
  animation: fadeIn 2.5s ease 0.2s 1 forwards;
}

.fadeup.In {
  animation: fadeupIn 2s ease 0.2s 1 forwards;
}

.delay01 {
  animation-delay: 0.7s !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeupIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.sp,
.sp02 {
  display: none;
}

@media screen and (min-width: 769px) {
  .table02 tbody tr .table02__td:nth-child(3),
  .table02 tbody tr .table02__td:nth-child(4) {
    text-align: center;
  }

  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  .fz16 {
    font-size: 1.4rem;
  }

  .hdg01,
  .hdg02,
  .hdg-wrap {
    margin-bottom: 50px;
  }

  .hdg01 {
    font-size: 3.2rem;
  }

  .hdg02 {
    padding-left: 0;
    text-align: center;
    font-size: 2.6rem;
  }

  .hdg03 {
    font-size: 2.6rem;
  }

  .hdg04 {
    font-size: 2rem;
    padding-left: 20px;
    margin-bottom: 20px;
    border-bottom: 3px solid #16bcac;
  }

  .hdg04 span {
    padding: 10px;
    width: 110px;
  }

  .hdg-wrap .hdg01 {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-more {
    margin-top: 50px;
    font-size: 2rem;
  }

  .btn-back {
    font-size: 1.8rem;
    padding-left: 20px;
  }

  .btn-back::before {
    width: 8px;
    height: 8px;
    top: 20px;
  }

  .table01 .table01__th {
    display: block;
    padding: 10px 10px 0;
    border-right: none;
  }

  .table01 tr:not(:last-child) .table01__th {
    border-bottom: none;
  }

  .table01 .table01__td {
    display: block;
    padding: 0 10px 10px;
  }

  .table02 tbody .table02__th {
    display: block;
    padding: 15px 0 0;
  }

  .table02 tbody .table02__td {
    display: block;
    padding: 0;
    font-size: 1.4rem;
  }

  .table02 tbody tr:not(:last-child) .table02__th,
  .table02 tbody tr:not(:last-child) .table02__td:not(:last-child) {
    border-bottom: none;
  }

  .table02 tbody tr:not(:last-child) .table02__td:last-child {
    padding-bottom: 15px;
  }

  .table03 .table03__th {
    width: 100%;
    display: block;
    border-right: none;
    padding: 0;
  }

  .table03 .table03__td {
    display: block;
    font-size: 1.4rem;
    padding: 0 0 20px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .table02 tbody .table02__td .sp {
    display: inline-block;
    margin-right: 5px;
  }
}

@media screen and (max-width: 550px) {
  .pc02 {
    display: none;
  }

  .sp02 {
    display: block;
  }
}

/*////////////////////////

 header

////////////////////////*/

.header {
  padding: 80px 0 10px;
}

.header .gnav {
  width: 100%;
}

.header .gnav .nav-list .nav-list__item a {
  display: block;
  padding: 0 5px 20px;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
}

.header .gnav .nav-list .nav-list__item a .f-en {
  font-size: 1.4rem;
  color: #16bcac;
  display: block;
  margin-top: 5px;
}

.header .gnav .nav-list .nav-list__item a::after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 1px;
  background: #16bcac;
}

.header .gnav .nav-list .nav-list__item a:hover::after,
.header .gnav .nav-list .nav-list__item.active a::after {
  width: 100%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0;
  }

  .header .gnav .nav-list {
    display: block !important;
    margin: 0;
    padding: 20% 0;
    text-align: center;
  }
  .header .gnav .nav-list .nav-list__item {
    padding: 10px 0;
    line-height: 1.4;
    max-width: 150px;
    margin: 0 auto;
  }
}

/*////////////////////////

footer

////////////////////////*/
.footer {
  background: #16bcac;
}

.footer .container {
  padding-top: 70px;
  padding-bottom: 70px;
  color: #fff;
  max-width: 700px;
}

.footer .add {
  line-height: 2;
}

.footer .copy {
  text-align: center;
  padding: 20px 0;
  background-color: #fff;
}

.footer .copy small {
  font-size: 1.6rem;
}

@media screen and (max-width: 550px) {
  .footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer .add {
    width: 100%;
    margin-top: 10px;
  }
}

/* main-visual */

.main-visual {
  position: relative;
  width: 100%;
  height: calc(100vh - 167px);
  background-image: url(img/top/main1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-visual .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}

.main-visual .main-visual__ttl {
  position: absolute;
  max-width: 80px;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  opacity: 0;
  animation: fadeupTtl 2s ease 1s 1 forwards;
}

@keyframes fadeupTtl {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .main-visual {
    height: 100vh;
  }

  .main-visual .logo {
    left: 10px;
    top: 10px;
  }

  .main-visual .main-visual__ttl {
    right: 50px;
  }
}

@media screen and (max-width: 550px) {
  .main-visual .main-visual__ttl {
    width: 20%;
    right: 30px;
  }
}

/* top */

.top-about {
  padding: 140px 0;
}

.top-about .flexbox .img {
  width: 48%;
}

.top-about .flexbox .txt {
  width: 50%;
}

.top-shop a {
  overflow: hidden;
}

.top-shop a .img {
  width: calc(100% - 340px);
  background-image: url(img/top/store.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.5s;
}

.top-shop a:hover .img {
  transform: scale(1.05);
}

.top-shop a .txt {
  width: 340px;
  background-color: #16bcac;
  color: #fff;
  text-align: center;
  padding: 350px 10px 80px;
  position: relative;
  z-index: 1;
}

.top-shop a .txt h2 {
  font-size: 3.2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  right: 80px;
  top: 80px;
}

.top-shop a .txt p {
  line-height: 1.2;
}

.top-recruit {
  padding: 140px 0;
}

.top-recruit .flexbox .img {
  width: 50%;
}

.top-recruit .flexbox .txt {
  width: 48%;
  margin-top: 30px;
}

.top-news {
  padding: 80px 0 140px;
  background-color: #ececec;
}

.top-news .news-wrap {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto;
  height: 200px;
  overflow-y: scroll;
}

.top-news .news-list .news-list__item {
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-news .news-list .news-list__item:first-child {
  border-top: 1px solid #ccc;
}

.top-news .news-list .news-list__item .news-date {
  color: #16bcac;
}

.top-news .news-list .news-list__item .news-txt {
  width: calc(100% - 200px);
}

@media screen and (min-width: 769px) {
  .top-about .hdg-wrap .hdg01 {
    left: auto;
    right: 20%;
  }
}

@media screen and (max-width: 768px) {
  .top-about {
    padding: 100px 0;
  }

  .top-about .flexbox .img {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 40px;
  }

  .top-about .flexbox .txt {
    width: 100%;
  }

  .top-shop a .img {
    width: calc(100% - 160px);
  }

  .top-shop a .txt {
    width: 160px;
    padding: 180px 10px 30px;
  }

  .top-shop a .txt h2 {
    font-size: 2.8rem;
    right: 15px;
    top: 40px;
  }

  .top-recruit {
    padding: 100px 0;
  }

  .top-recruit .flexbox .img {
    width: 100%;
    padding: 0 40px;
    text-align: center;
  }

  .top-recruit .flexbox .txt {
    width: 100%;
  }

  .top-news {
    padding: 60px 0 100px;
  }

  .top-news .news-wrap {
    padding: 0 10px;
    height: 300px;
  }

  .top-news .news-list .news-list__item .news-txt {
    width: 100%;
  }
}

/* subpage */

.submain {
  /* background-color: #ececec; */
  padding: 120px 0 140px;
  position: relative;
}

.submain::before {
  content: "";
  width: calc(100% - 400px);
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.sub-hdg {
  font-size: 2rem;
  line-height: 1.4;
  padding-left: 100px;
  position: relative;
  z-index: 2;
}

.sub-hdg .f-en {
  font-size: 5rem;
  display: block;
  color: #16bcac;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 768px) {
  .submain {
    padding: 80px 0 100px;
  }

  .submain::before {
    width: calc(100% - 180px);
  }

  .sub-hdg {
    font-size: 1.6rem;
    padding-left: 15px;
  }

  .sub-hdg .f-en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 550px) {
  .submain {
    padding: 50px 0 55px;
  }

  .submain::before {
    width: calc(100% - 140px);
  }

  .sub-hdg {
    font-size: 1.4rem;
  }

  .sub-hdg .f-en {
    font-size: 3rem;
  }
}

/* about */

.submain.about::before {
  background-image: url(img/about/main.jpg);
}

.about01,
.about02 {
  padding-top: 140px;
}

.about03 {
  padding: 140px 0;
}

.about01 .txt {
  width: 65%;
}

.about01 .img {
  width: 30%;
}

.about02 .container-s {
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .about01,
  .about02 {
    padding-top: 100px;
  }

  .about03 {
    padding: 100px 0;
  }

  .about01 .txt {
    width: 100%;
  }

  .about01 .img {
    width: 80%;
    max-width: 200px;
    margin: 0 auto 30px;
  }
}

/* shop */

.submain.shop::before {
  background-image: url(img/shop/main.jpg);
}

.shop01 {
  padding: 100px 0;
}

.shop01 ul {
  max-width: 700px;
  margin: 50px auto 0;
  gap: 10px;
}

.shop01 ul li {
  width: calc((100% - 40px) / 5);
}

.shop01 ul li a {
  display: block;
  text-align: center;
  border: 3px solid #16bcac;
  color: #16bcac;
  font-weight: bold;
  padding: 5px;
  border-radius: 10px;
}

.shop01 ul li a:hover {
  color: #fff;
  background-color: #16bcac;
  opacity: 1;
}

.shop-list {
  padding-bottom: 140px;
}

@media screen and (min-width: 769px) {
  .shop-list .hdg04 span {
    transform: translateX(-50%);
  }
  #hiroshima .hdg04 {
    padding-left: 10%;
  }

  #yamaguchi .hdg04 {
    padding-left: 30%;
  }

  #shimane .hdg04 {
    padding-left: 50%;
  }

  #okayama .hdg04 {
    padding-left: 70%;
  }

  #kanren .hdg04 {
    padding-left: 90%;
  }
}

@media screen and (max-width: 768px) {
  .shop01 {
    padding: 80px 0;
  }

  .shop01 ul {
    margin-top: 30px;
  }

  .shop01 ul li {
    width: 49%;
    margin-bottom: 2%;
  }

  .shop-list {
    padding-bottom: 100px;
  }
}

/* recruit */

.submain.recruit {
  text-align: center;
  background-color: #16bcac;
}

.submain.recruit::before {
  content: normal;
}

.submain.recruit .sub-hdg {
  color: #000;
  padding-left: 0;
}

.submain.recruit .sub-hdg .f-en {
  color: #fff;
}

.recruit01 {
  padding-top: 140px;
  margin-bottom: 30px;
}

.recruit02 {
  padding-bottom: 100px;
  margin-top: 80px;
}

.recruit01 .box,
.recruit02 .box {
  border: 3px solid #000;
  border-radius: 15px;
  padding: 50px 15px 60px;
  position: relative;
}

.recruit01 .box .inner,
.recruit02 .box .inner {
  max-width: 600px;
  margin: 0 auto;
}

.recruit01 .box::before,
.recruit01 .box::after,
.recruit02 .box::before,
.recruit02 .box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.recruit01 .box::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 25px 0 25px;
  border-color: #000 transparent transparent transparent;
  bottom: -50px;
  z-index: 1;
}

.recruit01 .box::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 25px 0 25px;
  border-color: #fff transparent transparent transparent;
  bottom: -42px;
  z-index: 2;
}

.recruit02 .box::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 50px 25px;
  border-color: transparent transparent #000 transparent;
  top: -50px;
  z-index: 1;
}

.recruit02 .box::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 50px 25px;
  border-color: transparent transparent #fff transparent;
  top: -42px;
  z-index: 2;
}

.recruit02 dl {
  margin-bottom: 50px;
}

.recruit02 dl dt .hdg,
.recruit02 h3 {
  font-size: 2.4rem;
  color: #ffa416;
  padding-left: 20px;
  font-weight: bold;
  position: relative;
  display: block;
}

.recruit02 dl dt .hdg::before,
.recruit02 h3::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 30px;
  background-color: #ffa416;
  left: 0;
  top: 50%;
  margin-top: -15px;
}

.recruit02 dl dd p {
  padding-left: 3rem;
  position: relative;
}

.recruit02 dl dd p::before {
  position: absolute;
  left: 0;
  top: 0;
}

.recruit02 dl dd p:first-of-type::before {
  content: "①";
}

.recruit02 dl dd p:nth-of-type(2)::before {
  content: "②";
}

.recruit02 dl ul li {
  padding-left: 5rem;
  position: relative;
}

.recruit02 dl ul li::before {
  content: "・";
  position: absolute;
  left: 3rem;
  top: 0;
}

.recruit03 {
  padding: 80px 0;
  background-color: #ffefd5;
}

.recruit03 .container-s {
  max-width: 740px;
}

.recruit03 h2 {
  font-size: 2rem;
  border-radius: 10px;
  border: 2px solid #000;
  padding: 10px;
  text-align: center;
}

.recruit03 table {
  width: calc(100% - 220px);
  max-width: 450px;
}

.recruit03 table th {
  text-align: left;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .recruit01 {
    padding-top: 100px;
  }

  .recruit01 .box,
  .recruit02 .box {
    padding: 20px 15px 30px;
  }

  .recruit01 .box::before {
    border-width: 30px 12.5px 0 12.5px;
    bottom: -30px;
  }

  .recruit01 .box::after {
    border-width: 30px 12.5px 0 12.5px;
    bottom: -22px;
  }

  .recruit02 .box::before {
    border-width: 0 12.5px 30px 12.5px;
    top: -30px;
  }

  .recruit02 .box::after {
    border-width: 0 12.5px 30px 12.5px;
    top: -22px;
  }

  .recruit-img {
    padding: 0 40px;
  }

  .recruit02 dl dt .hdg,
  .recruit02 h3 {
    font-size: 2rem;
  }

  .recruit02 dl dt::before,
  .recruit02 h3::before {
    height: 25px;
    margin-top: -12px;
  }

  .table-wrap {
    border-width: 3px;
    padding: 20px 20px 10px;
  }

  .recruit03 {
    padding: 50px 0;
  }

  .recruit03 h2 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
    width: 100%;
  }

  .recruit03 table {
    width: 180px;
    margin: 0 auto;
  }

  .recruit03 table th,
  .recruit03 table td {
    display: block;
    text-align: center;
  }

  .recruit03 table td a {
    text-decoration: underline;
  }

  .recruit03 table tr:not(:last-child) td {
    margin-bottom: 10px;
  }
}

/* shop-detail */

.shop-detail01 {
  padding: 140px 0;
}

.shop-detail01 .container-s {
  max-width: 800px;
}

.shop-detail01 .img {
  width: 280px;
}

.shop-detail01 .txt {
  width: calc(100% - 320px);
}

.shop-detail01 .txt p {
  margin-bottom: 30px;
}

.shop-detail01 .map {
  width: 100%;
  height: 400px;
  margin: 50px 0 80px;
}

.shop-detail01 .map iframe {
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {
  .shop-detail01 {
    padding: 100px 0;
  }

  .shop-detail01 .img {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .shop-detail01 .txt {
    width: 100%;
  }

  .shop-detail01 .txt p {
    margin-bottom: 20px;
  }

  .shop-detail01 .map {
    height: 280px;
  }
}
