@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
body {
  color: #333;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 2;
}

body#home {
  background: url("../img/body-bg.jpg") no-repeat center/cover;
}

body#lower {
  background: url("../img/lower_body-bgv2.jpg") no-repeat center/cover;
}

body#home::before {
  display: block;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/body-bg.jpg") no-repeat center/cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  content: "";
}

body#lower::before {
  display: block;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/lower_body-bgv2.jpg") no-repeat center/cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  content: "";
}

.wrap {
  background-color: rgba(255, 255, 255, 0.7);
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
}

/* その他共通 */
.flex {
  display: flex;
  flex-wrap: wrap;
}

/*
  Screen Reader Text
*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*スクロールバーデザイン*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-left: solid 1px #ececec;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #0068b7;
  box-shadow: inset 0 0 0 2px #fff;
}

/*
.container {
  width: 90%;
  padding: 1em;
  @include mq(tab) {
    padding: 2em 1em 2em 2em;
  }
}
*/
/* ============================================
  grid - Ore no Flexible CSS l-grid System
============================================ */
/*
 Settings
--------------------------------- */
/*
  Base
--------------------------------- */
/*
  <div class="l-grid">
    <div class="l-grid__item">A</div>
    <div class="l-grid__item">B</div>
    <div class="l-grid__item">C</div>
  </div>
*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.l-grid__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/*
  Direction
--------------------------------- */
/*
  <div class="l-grid" data-dir="reverse">
    <div class="l-grid__item">A</div>
    <div class="l-grid__item">B</div>
    <div class="l-grid__item">C</div>
  </div>
*/
.l-grid[data-dir="normal"] {
  flex-direction: row;
}

.l-grid[data-dir="reverse"] {
  flex-direction: row-reverse;
}

/*
  Alignment
--------------------------------- */
/*
  <div class="l-grid" data-align="center">
    <div class="l-grid__item">A</div>
    <div class="l-grid__item">B</div>
    <div class="l-grid__item" data-align="end middle">C</div>
  </div>
*/
.l-grid[data-align~="start"] {
  justify-content: flex-start;
}

.l-grid[data-align~="center"] {
  justify-content: center;
}

.l-grid[data-align~="end"] {
  justify-content: flex-end;
}

.l-grid[data-align~="justify"] {
  justify-content: space-between;
}

.l-grid[data-align~="top"] {
  align-items: flex-start;
}

.l-grid[data-align~="middle"] {
  align-items: center;
}

.l-grid[data-align~="bottom"] {
  align-items: flex-end;
}

.l-grid__item[data-align~="start"] {
  align-items: flex-start;
}

.l-grid__item[data-align~="center"] {
  align-items: center;
}

.l-grid__item[data-align~="end"] {
  align-items: flex-end;
}

.l-grid__item[data-align~="top"] {
  -ms-grid-row-align: stretch;
  align-self: stretch;
  justify-content: flex-start;
}

.l-grid__item[data-align~="middle"] {
  -ms-grid-row-align: stretch;
  align-self: stretch;
  justify-content: center;
}

.l-grid__item[data-align~="bottom"] {
  -ms-grid-row-align: stretch;
  align-self: stretch;
  justify-content: flex-end;
}

/*
  l-grid
--------------------------------- */
/*
  <div class="l-grid" data-gutter="normal">
    <div class="l-grid__item" data-grid="sp12 tab4 lap6">A</div>
    <div class="l-grid__item" data-grid="sp6 tab4 lap3">B</div>
    <div class="l-grid__item" data-grid="sp6 tab4 lap3">C</div>
  </div>
*/
.l-grid[data-gutter] {
  width: auto;
}

.l-grid[data-gutter] > .l-grid__item {
  border: solid transparent;
  background-clip: padding-box;
}

.l-grid[data-gutter="small"] {
  margin: -1.25vw;
}

.l-grid[data-gutter="small"] > .l-grid__item {
  border-width: 1.25vw;
}

.l-grid[data-gutter="normal"] {
  margin: -2.5vw;
}

.l-grid[data-gutter="normal"] > .l-grid__item {
  border-width: 2.5vw;
}

.l-grid[data-gutter="large"] {
  margin: -3.75vw;
}

.l-grid[data-gutter="large"] > .l-grid__item {
  border-width: 3.75vw;
}

.l-grid__item[data-grid~="sp1"] {
  width: 8.33333%;
}

.l-grid__item[data-grid~="sp2"] {
  width: 16.66667%;
}

.l-grid__item[data-grid~="sp3"] {
  width: 25%;
}

.l-grid__item[data-grid~="sp4"] {
  width: 33.33333%;
}

.l-grid__item[data-grid~="sp5"] {
  width: 41.66667%;
}

.l-grid__item[data-grid~="sp6"] {
  width: 50%;
}

.l-grid__item[data-grid~="sp7"] {
  width: 58.33333%;
}

.l-grid__item[data-grid~="sp8"] {
  width: 66.66667%;
}

.l-grid__item[data-grid~="sp9"] {
  width: 75%;
}

.l-grid__item[data-grid~="sp10"] {
  width: 83.33333%;
}

.l-grid__item[data-grid~="sp11"] {
  width: 91.66667%;
}

.l-grid__item[data-grid~="sp12"] {
  width: 100%;
}

.l-grid__item[data-grid~="spFive"] {
  width: 20%;
}

/*
  Spacer
-----------------------------------------------------*/
.l-spacer {
  padding: 1.5em 0;
}

.l-spacer.-top {
  padding-bottom: 0;
}

.l-spacer.-bottom {
  padding-top: 0;
}

.l-spacer.-side {
  padding: 0 1.5em;
}

.l-spacer.-white {
  background-color: #fff;
}

.l-footer .l-spacer {
  padding: 2.5em 0;
}

.mb24 {
  margin-bottom: 24px;
}

.mb46 {
  margin-bottom: 46px;
}

.mb64 {
  margin-bottom: 64px;
}

.pb46 {
  padding-bottom: 46px;
}

.pb64 {
  padding-bottom: 64px;
}

/*
  Centering
-----------------------------------------------------*/
.l-container {
  width: 90%;
  margin: 0 auto;
}

.l-container.-spFull {
  width: 100%;
}

.l-container.-button {
  width: 100%;
  max-width: 200px;
}

/*--------------------------------------------------------------
 header
--------------------------------------------------------------*/
#home .p-header {
  height: 100vh;
}

.header-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.header-branding__site-title {
  margin-bottom: 40px;
}

.header-branding-copy__txt {
  color: #181f42;
  font-size: 1em;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

#lower .header-branding-copy__txt {
  font-size: calc(1em + 22px);
}

.header-branding-inner {
  width: 90%;
}

/*--------------------------------------------------------------
 #TOP
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 main
--------------------------------------------------------------*/
/*
 ご挨拶
---------------------------------------------------*/
.txt-container-wraper {
  padding: 33px 0 48px 0;
  background-color: #fff;
}

.txt-container {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(1em - 2px);
}

.greeting-container .l-grid {
  display: block;
}

.container__txt {
  margin-bottom: 1em;
}

.ta-r {
  text-align: right;
}

.w100p {
  width: 100%;
}

/*
 チラシ
---------------------------------------------------*/
.flyer-container-icatch-area {
  width: 90%;
  margin: 0 auto;
}

.flyer-container__item img {
  height: auto;
}

/*
 新着情報
---------------------------------------------------*/

.news-area {
  width: 90%;
  margin: 0 auto;
}

.news__thumbnail img {
  height: auto;
}

#home .news__thumbnail {
  width: 100%;
  height: 200px;
}

#home .c-card {
  max-width: 290px;
  min-height: 450px;
}

#home .c-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-area.flexx {
  justify-content: space-evenly;
}
/*
 事前注文
---------------------------------------------------*/

.order-container .l-grid {
  display: block;
}

.order-container .txt-wrapper {
  width: 80%;
  margin: 46px auto;
}

/*
 バナーボタン
---------------------------------------------------*/
.bunner_btn {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: #2b6ca3;
  padding: 0.5em 1em;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.tel-btn__link {
  width: 60px;
  height: 60px;
  background-color: #000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}

.tel-btn__link img {
  margin-top: 0.8em;
  width: 32px;
  height: 32px;
}

.bunner_btn:hover,
.tel-btn__link:hover {
  filter: brightness(1.2);
}

/*--------------------------------------------------------------
 #LOWER セール
--------------------------------------------------------------*/
.order .l-grid {
  display: block;
}

.box_content {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 6em;
  padding: 2em 0;
  background: rgba(255, 255, 255, 0.6);
}

.box_content__ttl {
  font-size: calc(1em + 16px);
  text-align: center;
}

.box_content__txt {
  width: 80%;
  margin: 4em auto;
}

.l-container__item {
  width: 80%;
  margin: 4em auto 0 auto;
}

.l-container.--hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
 #LOWER 新着情報
--------------------------------------------------------------*/
.news_list {
  padding-top: 2em;
}

.news_list-link {
  display: block;
  transition: 0.3s;
  background-color: #fff;
}

.news_list-link:hover {
  background: #f3f1f1;
}

.news_list__item {
  position: relative;
  margin: 0 0 -1px 0;
  border: 1px solid #ddd;
  overflow: hidden;
}

.news_list .news_date {
  color: #999;
  font-family: Arial;
  font-size: 14px;
}

.news_list .news_ttl {
  word-wrap: break-word;
  visibility: visible;
  flex: 1 1 0%;
  overflow: hidden;
  font-weight: 500;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  font-size: calc(1em + 2px);
}

.news_list .news__thumbnail {
  width: 100%;
  height: 200px;
  margin: 0;
}

.news_list img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-flo {
  float: none;
}

.post_content {
  padding: 2em 0;
}

.post_content__txt p {
  margin-bottom: 1em;
}

.news_list__body {
  width: 100%;
  padding: 1em;
}

.news-container {
  padding-bottom: 6em;
}

.pagination {
  width: 90%;
  max-width: 1200px;
  margin: 2em auto;
  padding: 0;
}

.nav-links {
  overflow: hidden;
}

.wp-block-file__button {
  padding: 0.5em;
}

/*ページャー*/
.page-numbers {
  padding-top: 3rem;
}

.page-numbers li {
  padding: 0;
  margin-left: 1.25em;
  display: inline-block;
}
.page-numbers li .current {
  padding: 0.8rem;
  background-color: #000000;
  color: #ffffff;
}
.page-numbers li .prev,
.page-numbers li .next {
  background: none;
  color: #002655;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li .prev:hover,
.page-numbers li .next:hover {
  background: none;
  color: #185790;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li a {
  display: inline-block;
  padding: 0.8rem;
  background-color: #3887de;
  color: #ffffff;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li a:hover {
  background-color: #185790;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*
 #LOWER 新着情報＿記事
--------------------------------------------------------------*/

.single_news_article .post_title {
  margin-bottom: 2em;
}

.single_news_article .category {
  box-sizing: border-box;
  display: inline-block;
  min-width: 100px;
  height: 30px;
  margin: 0 0 15px 0;
  padding: 0 20px;
  border-radius: 30px;
  background-color: #c4c400;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
}

.single_news_article .entry-ttl {
  font-size: calc(1em + 10px);
}

.single_news_article .meta_top {
  -ms-align-items: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0 0 0;
}

.single_news_article .date {
  position: relative;
  color: #999;
  font-size: 14px;
}

.single_news_article #post_img {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*
 #LOWER 新着情報＿アルバイト募集
--------------------------------------------------------------*/
.recruit-ttl {
  margin-bottom: 1.5rem;
}

.recruit-table th {
  width: 250px;
  background-color: #2B6CA3;
  vertical-align: middle;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.recruit-table td {
  background-color: #f0f0f0;
  padding: 15px;
  border-bottom: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.btn.btn--recruit {
  padding: 4rem 0 0;
}

/*
 #LOWER セール＿記事
--------------------------------------------------------------*/
.article #post_img {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 40px;
  object-fit: cover;
}

.post_image_wrap img {
  height: auto;
}

/*--------------------------------------------------------------
 #LOWER お問い合わせ
--------------------------------------------------------------*/
.page-contact .page_content {
  width: auto;
  max-width: 860px;
  margin: 0 auto;
}

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

.txt-color__deco {
  color: #2b6ca3;
}

.wpcf7 {
  width: 100%;
  margin: 0 0 2.5em !important;
  padding: 0;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
}

.wpcf7 form {
  margin: 1.5em 1.5em 0;
  padding-bottom: 2em;
}

.wpcf7 p {
  margin-bottom: 1em;
  font-size: 16px;
}

.required {
  color: red;
}

.wpcf7 .wpcf7-submit {
  background: #000;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 3px 3px 3px #999;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: #3887de;
  transition: 0.3s;
}

.wpcf7-list-item {
  text-align: center;
}

.wpcf7 label {
  font-weight: 600;
  color: #535353;
}

.wpcf7 input,
.wpcf7 textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  line-height: 1.2;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7-select {
  background: #f3f8fd;
  box-shadow: 1px 1px #ddd;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7 .wpcf7-list-item {
  display: block;
}

.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto;
  max-width: 97%;
  padding: 8px;
  border: 1px solid #ccc;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.2;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
  -webkit-transition: all 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 225px;
  height: 48px;
  margin: 30px auto 0;
  border: none !important;
  outline: none;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

/*privacy*/
.blk-iframe {
  border: 1px solid #e4e4e4;
  background-color: #f3f8fd;
  width: 800px;
  max-width: 100%;
  height: 30em;
  margin: 2em auto;
  overflow: auto;
}
.privacy {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}
/*privacy*/
.blk-iframe {
  border: 1px solid #e4e4e4;
  background-color: #f3f8fd;
  width: 800px;
  max-width: 100%;
  height: 30em;
  margin: 2em auto;
  overflow: auto;
}
.privacy {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}
.privacy h4 {
  color: #3887de;
  margin: 0rem 0 2rem;
  font-size: 1.2rem;
}
.privacy h5 {
  font-weight: 600;
  color: #333;
  margin: 0.3rem 0;
  font-size: 1.1rem;
}
.privacy p {
  line-height: 2.1;
  font-size: 0.9rem;
}
/*--------------------------------------------------------------
 footer
--------------------------------------------------------------*/
.p-fotter {
  background-color: #fff;
}

.footer-inner {
  width: 80%;
  margin: 0 auto;
}

.footer-logo {
  margin: 48px 0px 16px 0;
  text-align: center;
}

.footer-logo img {
  width: 45px;
  height: 76px;
  object-fit: cover;
  object-position: 50% 50%;
}

.address {
  font-size: calc(1em - 2px);
  text-align: center;
}

.sns-area {
  margin: 2em 0;
}

.sns-area ul {
  display: flex;
  justify-content: center;
}

.sns-area ul li + li {
  margin-left: 2em;
}

.copyright {
  font-size: calc(1em - 4px);
  text-align: center;
}

/*--------------------------------------------------------------
 component
--------------------------------------------------------------*/
/*
 Grobal Navigation
--------------------------------------------------------------*/
.global-nav {
  margin-right: 4em;
  padding-top: 2em;
  /*============
.toggle_btn
=============*/
  /*============
#mask
=============*/
}

.global-nav nav {
  -webkit-overflow-scrolling: touch;
  display: block;
  z-index: 1111;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -300px;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  opacity: 0;
  transition: all 0.5s;
}

.global-nav .open nav {
  left: 0;
  opacity: 1;
}

.global-nav nav .global-nav__inner {
  padding: 25px;
}

.global-nav nav .global-nav__inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav nav .global-nav__inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

.global-nav nav .global-nav__inner ul li a {
  display: block;
  padding: 1em;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition-duration: 0.2s;
}

.global-nav nav .global-nav__inner ul li a:hover {
  background: #e4e4e4;
}

.global-nav .toggle_btn {
  display: block;
  z-index: 7;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.5s;
}

.global-nav .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background-color: #333;
  transition: all 0.5s;
}

.global-nav .toggle_btn span:nth-child(1) {
  top: 4px;
}

.global-nav .toggle_btn span:nth-child(2) {
  top: 14px;
}

.global-nav .toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.global-nav .open .toggle_btn span {
  background-color: #fff;
}

.global-nav .open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}

.global-nav .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.global-nav .open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}

.global-nav #mask {
  display: none;
  transition: all 0.5s;
}

.global-nav .open #mask {
  display: block;
  z-index: 8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
  opacity: 0.8;
}

/*
 Dot Navigation
--------------------------------------------------------------*/
.dot-navigation {
  position: fixed;
  z-index: 3;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.dot-navigation .dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.dot-navigation .dot.active {
  background-color: #000;
}

/*
 sp
---------------------------------------*/

/*
 Heading
--------------------------------------------------------------*/
.container__sub-ttl {
  padding: 33px 0 28px 0;
  font-size: calc(1em + 10px);
  text-align: center;
}

.container__min-ttl {
  margin: 33px 0 28px 0;
  font-size: calc(1em + 10px);
  text-align: center;
}

/*
 Content
--------------------------------------------------------------*/
/*
 Btn
--------------------------------------------------------------*/
.btn {
  height: 50px;
  padding: 3em 0;
  text-align: center;
}

.btn .c-btn {
  padding: 1em 2em;
  border: 1px solid #3887de;
  border-radius: 2px;
  font-weight: bold;
  transition: 0.3s;
}

.btn .c-btn:hover {
  background: #3887de;
  color: #fff;
}

/*
 Gallery
--------------------------------------------------------------*/
.gallery {
  /*段組みの数*/
  padding: 0 15px;
  columns: 4;
  /*ギャラリー左右に余白をつける*/
}

.gallery li {
  margin-bottom: 20px;
  /*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /*画像の下にできる余白を削除*/
}

/*　横幅900px以下の段組み設定　*/

/*========= レイアウトのためのCSS ===============*/
.gallery ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*画像を出現させるアニメーションCSS*/
.flipLeft {
  animation-name: flipLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  perspective-origin: left center;
}

@keyframes flipLeft {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/*
 scroll-point
--------------------------------------------------------------*/
nav ul li.current a,
nav ul li a:hover {
  color: #3887de;
}

/*
 Card
--------------------------------------------------------------*/
#home .c-card {
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.7);
}

#home .c-card__ttl {
  margin-bottom: 1em;
  font-size: 16px;
}

#home .c-card__body {
  height: 200px;
  padding: 28px 24px;
  font-size: calc(1em - 2px);
}

#lower .c-card {
  display: block;
  position: relative;
  /* max-width: 400px; */
  width: 100%;
  padding-top: 70.72136%;
  color: inherit;
  text-decoration: none;
}

#lower .c-card__body {
  padding: 1rem;
}

#lower .c-card__body .p-project__title {
  margin-bottom: 1em;
}

#lower .c-card__thumbnail {
  position: absolute;
  top: 0;
  width: 100%;
}

#lower .c-card__thumbnail img {
  width: 100%;
  /* max-width: 400px; */
  height: auto;
}

.p-project {
  background-color: #fff;
}

/*
 Pagination
--------------------------------------------------------------*/
/*
 local Navigation
--------------------------------------------------------------*/
.inview {
  transition: all 1s ease-out;
}

.inview[data-duration="fast"] {
  transition-duration: 0.3s;
}

.inview[data-duration="normal"] {
  transition-duration: 1s;
}

.inview[data-duration="slow"] {
  transition-duration: 2s;
}

.inview[data-easing="linear"] {
  transition-timing-function: linear;
}

.inview[data-easing="ease"] {
  transition-timing-function: ease;
}

.inview[data-easing="ease-in"] {
  transition-timing-function: ease-in;
}

.inview[data-easing="ease-out"] {
  transition-timing-function: ease-out;
}

.inview[data-easing="ease-in-out"] {
  transition-timing-function: ease-in-out;
}

.inview[data-easing="ease-in-expo"] {
  transition-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
}

.inview[data-easing="ease-out-expo"] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.inview[data-easing="ease-in-out-expo"] {
  transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
}

.inview[data-easing="in-back"] {
  transition-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56);
}

.inview[data-easing="out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.inview[data-type~="fadeIn"].is-inviewReady {
  opacity: 0;
}

.inview[data-type~="fadeIn"].is-inviewActive {
  opacity: 1;
}

.inview[data-type~="slideUpIn"].is-inviewReady {
  transform: translateY(2.5rem);
  opacity: 0;
}

.inview[data-type~="slideUpIn"].is-inviewActive {
  transform: translateY(0);
  opacity: 1;
}

.inview[data-type~="slideDownIn"].is-inviewReady {
  transform: translateY(-2.5rem);
  opacity: 0;
}

.inview[data-type~="slideDownIn"].is-inviewActive {
  transform: translateY(0);
  opacity: 1;
}

.inview[data-type~="slideLeftIn"].is-inviewReady {
  transform: translateX(2.5rem);
  opacity: 0;
}

.inview[data-type~="slideLeftIn"].is-inviewActive {
  transform: translateX(0);
  opacity: 1;
}

.inview[data-type~="slideRightIn"].is-inviewReady {
  transform: translateX(-2.5rem);
  opacity: 0;
}

.inview[data-type~="slideRightIn"].is-inviewActive {
  transform: translateX(0);
  opacity: 1;
}

.inview[data-type~="zoomIn"].is-inviewReady {
  transform: scale(0);
}

.inview[data-type~="zoomIn"].is-inviewActive {
  transform: scale(1);
  opacity: 1;
}

.inview[data-type~="rotateIn"].is-inviewReady {
  transform: rotate(-360deg);
  opacity: 0;
}

.inview[data-type~="rotateIn"].is-inviewActive {
  transform: rotate(0);
  opacity: 1;
}

.inview[data-type~="textCloseIn"].is-inviewReady {
  letter-spacing: 0.1em;
  opacity: 0;
}

.inview[data-type~="textCloseIn"].is-inviewActive {
  letter-spacing: inherit;
  opacity: 1;
}

.inview[data-type~="textShadowIn"].is-inviewReady {
  color: transparent;
  text-shadow: 0 0 5rem rgba(0, 0, 0, 0.6);
}

.inview[data-type~="textShadowIn"].is-inviewActive {
  color: inherit;
  text-shadow: 0 0 0 transparent;
}

/*--------------------------------------------------------------
 Media query
--------------------------------------------------------------*/

@media screen and (min-width: 959px) {
  body#top {
    background-attachment: fixed;
  }
  body#lower {
    background-attachment: fixed;
  }
  .header-branding-copy__txt {
    font-size: calc(1em + 8px);
  }

  .order-container img {
    display: block;
    max-width: 1410px;
    margin: 0 0 0 auto;
  }
  .order .l-grid {
    display: flex;
  }
  .box_content {
    max-width: 1200px;
  }
  .box_content__txt {
    width: 50%;
  }
  .news_list {
    margin: 0 60px;
  }
  .news_list__item {
    -ms-align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .single_news_article {
    padding: 4em;
  }
  .news_list .news__thumbnail {
    width: 260px;
  }
  .news_list__body {
    width: 60%;
  }
  .l-flo {
    float: left;
  }
  .single_news_article #post_img {
    height: 440px;
    object-fit: cover;
  }
  .global-nav {
    z-index: 10000;
    position: fixed;
    width: 100%;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(128, 130, 133, 0.3);
    background: rgba(255, 255, 255, 0.4);
  }
  .global-nav__item {
    margin-right: 3em;
  }
  #home .c-card {
    margin-right: 1em;
  }
  #home .c-card__body {
    height: auto;
  }

  #home .c-card__thumbnail img {
    max-width: 290px;
    max-height: 200px;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .l-grid[data-gutter="small"] {
    margin: -0.5vw;
  }
  .l-grid[data-gutter="small"] > .l-grid__item {
    border-width: 0.5vw;
  }
  .l-grid[data-gutter="normal"] {
    margin: -1vw;
  }
  .l-grid[data-gutter="normal"] > .l-grid__item {
    border-width: 1vw;
  }
  .l-grid[data-gutter="large"] {
    margin: -1.5vw;
  }
  .l-grid[data-gutter="large"] > .l-grid__item {
    border-width: 1.5vw;
  }
  .l-grid__item[data-grid~="tab1"] {
    width: 8.33333%;
  }
  .l-grid__item[data-grid~="tab2"] {
    width: 16.66667%;
  }
  .l-grid__item[data-grid~="tab3"] {
    width: 25%;
  }
  .l-grid__item[data-grid~="tab4"] {
    width: 33.33333%;
  }
  .l-grid__item[data-grid~="tab5"] {
    width: 41.66667%;
  }
  .l-grid__item[data-grid~="tab6"] {
    width: 50%;
  }
  .l-grid__item[data-grid~="tab7"] {
    width: 58.33333%;
  }
  .l-grid__item[data-grid~="tab8"] {
    width: 66.66667%;
  }
  .l-grid__item[data-grid~="tab9"] {
    width: 75%;
  }
  .l-grid__item[data-grid~="tab10"] {
    width: 83.33333%;
  }
  .l-grid__item[data-grid~="tab11"] {
    width: 91.66667%;
  }
  .l-grid__item[data-grid~="tab12"] {
    width: 100%;
  }
  .l-grid__item[data-grid~="tabFive"] {
    width: 20%;
  }
  .l-grid__item[data-grid~="tabAuto"] {
    width: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-grid__item[data-grid~="lap1"] {
    width: 8.33333%;
  }
  .l-grid__item[data-grid~="lap2"] {
    width: 16.66667%;
  }
  .l-grid__item[data-grid~="lap3"] {
    width: 25%;
  }
  .l-grid__item[data-grid~="lap4"] {
    width: 33.33333%;
  }
  .l-grid__item[data-grid~="lap5"] {
    width: 41.66667%;
  }
  .l-grid__item[data-grid~="lap6"] {
    width: 50%;
  }
  .l-grid__item[data-grid~="lap7"] {
    width: 58.33333%;
  }
  .l-grid__item[data-grid~="lap8"] {
    width: 66.66667%;
  }
  .l-grid__item[data-grid~="lap9"] {
    width: 75%;
  }
  .l-grid__item[data-grid~="lap10"] {
    width: 83.33333%;
  }
  .l-grid__item[data-grid~="lap11"] {
    width: 91.66667%;
  }
  .l-grid__item[data-grid~="lap12"] {
    width: 100%;
  }
  .l-grid__item[data-grid~="lapFive"] {
    width: 20%;
  }
  .l-grid__item[data-grid~="lapAuto"] {
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-grid__item[data-grid~="desk1"] {
    width: 8.33333%;
  }
  .l-grid__item[data-grid~="desk2"] {
    width: 16.66667%;
  }
  .l-grid__item[data-grid~="desk3"] {
    width: 25%;
  }
  .l-grid__item[data-grid~="desk4"] {
    width: 33.33333%;
  }
  .l-grid__item[data-grid~="desk5"] {
    width: 41.66667%;
  }
  .l-grid__item[data-grid~="desk6"] {
    width: 50%;
  }
  .l-grid__item[data-grid~="desk7"] {
    width: 58.33333%;
  }
  .l-grid__item[data-grid~="desk8"] {
    width: 66.66667%;
  }
  .l-grid__item[data-grid~="desk9"] {
    width: 75%;
  }
  .l-grid__item[data-grid~="desk10"] {
    width: 83.33333%;
  }
  .l-grid__item[data-grid~="desk11"] {
    width: 91.66667%;
  }
  .l-grid__item[data-grid~="desk12"] {
    width: 100%;
  }
  .l-grid__item[data-grid~="deskFive"] {
    width: 20%;
  }
  .l-grid__item[data-grid~="deskAuto"] {
    width: auto;
  }
}

@media screen and (min-width: 559px) {
  .l-spacer {
    padding: 8em 0;
  }
  .l-container {
    max-width: 1200px;
  }
}

@media screen and (min-width: 960px) {
  #lower .c-card {
    padding-top: 70.72136%;
  }

  .bunner_btn {
    padding: 0.5em 2em;
    bottom: 40px;
    left: 20px;
  }

  .tel-btn {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .header-branding__site-title {
    display: block;
    width: 716px;
    height: 118px;
    margin: 30px auto;
    object-fit: cover;
  }
  .header-branding__site-title img {
    display: block;
    width: 716px;
    height: 118px;
    object-fit: cover;
    text-align: center;
  }
  .txt-container {
    font-size: 1em;
  }
  .greeting-container {
    position: relative;
  }
  .greeting-container .txt-container-wraper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 710px;
    max-height: 570px;
    margin: auto;
  }
  .txt-container-inner {
    padding: 1em 6em;
  }
  .icatch-container {
    width: 847px;
    /* height: 598px; */
    margin: 0 auto;
    padding: 86px 0;
  }
  .icatch-container img {
    width: 847px;
    height: 598px;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .order-container {
    position: relative;
  }
  .order-container .txt-container-wraper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 710px;
    height: 570px;
    margin: auto;
  }
  .order-container .txt-wrapper {
    width: 60%;
  }

  .news-area.flexx {
    justify-content: center;
  }

  .pagination {
    margin: 3em auto;
    padding: 0 4em;
  }

  .copyright {
    font-size: calc(1em - 2px);
  }
  .container__sub-ttl {
    padding: 83px 0 68px 0;
    font-size: calc(1em + 16px);
  }
  .container__min-ttl {
    margin: 53px 0 28px 0;
    font-size: calc(1em + 16px);
  }

  .page-contact .page_content {
    width: 860px;
  }

  #home .news__thumbnail {
    width: 290px;
    height: 200px;
  }
}

@media screen and (min-width: 1120px) {
  .global-nav__list {
    display: flex;
    justify-content: flex-end;
    font-weight: 700;
  }
  .global-nav__link {
    display: inline-block;
    position: relative;
    text-decoration: none;
  }
  .global-nav__link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #181f42;
    content: "";
    transition: all 0.3s ease 0s;
  }
  .global-nav__link:hover {
    cursor: pointer;
  }
  .global-nav__link:hover::after {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .global-nav nav {
    left: -220px;
    width: 220px;
  }
}

@media screen and (max-width: 1120px) {
  /*----humberger----*/
  /*============
nav
=============*/
  .global-nav {
    -webkit-overflow-scrolling: touch;
    display: block;
    z-index: 99;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    opacity: 0;
    transition: all 0.5s;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .global-nav__inner {
    padding: 25px;
  }
  nav .global-nav__inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  nav .global-nav__inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .global-nav__inner ul li a {
    display: block;
    padding: 1em;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .global-nav__inner ul li a:hover {
    background: #e4e4e4;
  }
  /*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    z-index: 3;
    position: fixed;
    top: 25px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.5s;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 4px;
    background-color: #3887de;
    transition: all 0.5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #3887de;
  }
  .open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    opacity: 0.8;
  }
}

@media screen and (max-width: 1090px) and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}

@media only screen and (max-width: 900px) {
  .gallery {
    columns: 3;
  }
}

@media only screen and (max-width: 768px) {
  .gallery {
    columns: 2;
  }
  .recruit-table :is(th, td) {
    display: block;
    width: 100%;
  }
}

@media only screen and (max-width: 560px) {
  .dot-navigation {
    display: none;
  }
}

/*
2023.7.13
-------------------------------- */
.grid__container {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.grid__container::-webkit-scrollbar {
  display: none;
}

.grid__wrap {
	display: grid;
  grid-template-columns: 300px 300px 500px 300px 300px 300px 300px 500px 300px 300px 300px 300px 500px;
  /* grid-template-columns: 1fr 1fr 1.63fr 1fr 1fr 1fr 1fr 1.63fr 1fr 1fr 1fr 1fr 1.63fr; */
  grid-template-rows: 200px;
  gap: 10px;
  width: 200%;
}

.grid__item {
	width: 100%;
	height: 100%;
}

.grid__item-img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-ch1 {
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.box-ch2 {
	grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.box-ch3 {
	grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.box-ch4 {
	grid-column: 4 / 6;
  grid-row: 1 / 4;
}

.box-ch5 {
	grid-column: 6 / 7;
  grid-row: 1 / 2;
}

.box-ch6 {
	grid-column: 7 / 8;
  grid-row: 1 / 2;
}

.box-ch7 {
	grid-column: 8 / 9;
  grid-row: 1 / 3;
}

.box-ch8 {
	grid-column: 9 / 11;
  grid-row: 1 / 4;
}

.box-ch9 {
	grid-column: 11 / 12;
  grid-row: 1 / 2;
}

.box-ch10 {
	grid-column: 12 / 13;
  grid-row: 1 / 2;
}

/* 2行目 */

.box-ch11 {
	grid-column: 13 / 14;
  grid-row: 1 / 3;
}

.box-ch12 {
	grid-column: 1 / 3;
  grid-row: 2 / 5;
}

.box-ch13 {
	grid-column: 3 / 4;
  grid-row: 3 / 5;
}

.box-ch14 {
	grid-column: 4 / 5;
  grid-row: 4 / 5;
}

.box-ch15 {
	grid-column: 5 / 6;
  grid-row: 4 / 5;
}

.box-ch16 {
	grid-column: 6 / 8;
  grid-row: 2 / 5;
}

.box-ch17 {
	grid-column: 8 / 9;
  grid-row: 3 / 5;
}

.box-ch18 {
	grid-column: 9 / 10;
  grid-row: 4 / 5;
}

.box-ch19 {
	grid-column: 10 / 11;
  grid-row: 4 / 5;
}

.box-ch20 {
	grid-column: 11 / 13;
  grid-row: 2 / 5;
}

.box-ch21 {
	grid-column: 13 / 14;
  grid-row: 3 / 5;
}
