/*------------------------------
theme name: sioribi 2025
version: 251208
author: yamabatosha
author uri: https://yamabatosha.com
------------------------------*/
@charset "utf-8";
@import url(css/reset.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');
/*------------------------------*/
/*------------------------------
base
------------------------------*/
html {font-size: 16px; overflow-x: hidden;}
.center {text-align: center!important;}
::selection {background: #333; color: #fff;}
* {outline: none;}
/*------------------------------
font
------------------------------*/
.bold {font-weight: 600;}
.sm {font-size: 0.813rem;}
.mt0 {margin-top: 0px!important;}
.pt0 {padding-top: 0px!important;}
/*------------------------------
grid
------------------------------*/
.col-center, .col-1, .col-2, .col-2-1 {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 40px 0;
  margin-top: 2rem;
  align-items: start;
}

/* min-width 1024px
------------------------------*/
@media (min-width: 1024px) {
  .col-center, .col-1, .col-2, .col-2-1 {
    grid-gap: 120px;
    margin-top: 4rem;
  }
  .col-center {
    grid-template-columns: 800px;
    justify-content: center;
  }
  .col-2 {grid-template-columns: repeat(2, 1fr);}
  .col-2-1 {grid-template-columns: 1fr 220px;}
}

hr,
.wp-block-separator {
  margin: 40px 0;
  width: 100%;
  border: 0;
  border-top: solid 1px #333;
}
/*------------------------------
style
------------------------------*/
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #333;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 2;
  font-family: 'Noto Serif JP', serif;
  -webkit-font-smoothing: antialiased;
  word-break: break-all;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/*------------------------------
basic
------------------------------*/
p {
  margin-top: 1em;
}

h2,
h3,
h4 {
  line-height: 1.5em;
  font-weight: 600;
  margin-top: 2em;
}


h2 {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}

h3 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}

h4 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}

div p:first-child,
div h2:first-child,
div h3:first-child,
div h4:first-child,
ol.list:first-child,
ul.list:first-child {
  margin: 0;
}

a {
  transition: .3s;
}

a,
a:hover,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

a img:hover {
  opacity: .7;
}

.link a {
  color: #333;
}

.link a:hover {
  opacity: .7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  transition: .3s;
}

hr {
  margin: 40px 0;
  width: 100%;
  border: 0;
  border-top: solid 1px #333;
}

/*------------------------------
list
------------------------------*/
ol.list,
ul.list {
  margin-top: 2em;
}

ul.list li {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  list-style: none;
}

/*------------------------------
btn
------------------------------*/
.btn {
  display: inline-block;
  min-width: 160px;
  height: 48px;
  line-height: 46px;
  text-align: center;
  letter-spacing: .2em;
  border-radius: 0;
  margin: 40px auto 0;
  position: relative;
  transition: all .3s;
  color: #fff;
  background: #333;
}

.btn:hover {
  color: #fff;
  background: #999;
}

/*------------------------------
news
------------------------------*/

.news {
  margin-top: 40px;
}

.article {
  margin-top: 1em;
}

.news .list {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.news p {
  margin: 0;
}

.date,
ul.post-categories {
  display: inline-block;
  line-height: 1;
}

ul.post-categories li {
  display: inline-block;
  background: #f0f0f0;
  font-size: .8em;
  padding: 4px 8px;
  margin-left: 8px;
  line-height: 1;
}

/*------------------------------
table
------------------------------*/

table {
  width: 100%;
}

table tr {
  border-bottom: solid 1px #ddd;
}

table tr:first-child {
  border-top: solid 1px #ddd;
}

table th {
  background: #f9f9f9;
  font-weight: 400;
}

table th,
table td {
  padding: 1em;
  vertical-align: top;
  text-align: left;
}

table th:first-child,
table td:first-child {
  white-space: nowrap;
}

table.border-none td,
table.border-none tr,
table.border-none tr:first-child {
  border: none;
  padding: .5em 0;
}

/* table-sp */
@media (max-width: 768px) {

  table.table-sp th,
  table.table-sp td {
    display: block;
    padding: .25em 0;
  }

  table.table-sp td:nth-child(2) {
    padding-top: 1em;
  }

  table.table-sp td:last-child {
    padding-bottom: 1em;
  }
}

/*------------------------------
form
------------------------------*/

table.form tr td:first-child {
  width: 5em;
  vertical-align: top;
  padding: 1em 0 0;
  line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  background: #f9f9f9;
  width: 100%;
  padding: 1em 1.2em;
  color: #333;
  letter-spacing: .1em;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  border-radius: 8px;
}

textarea {
  height: 10em;
  line-height: 1.6;
}

input[type="submit"] {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7 input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

/*------------------------------
header
------------------------------*/

header {
  position: relative;
  display: table;
  width: 100%;
  height: 80px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1;
  transition: .5s;
}

header .container {
  margin: 0 auto;
}

/*------------------------------
nav
------------------------------*/
header h1 {
  position: absolute;
  top: 15px;
  left: 0;
  line-height: 1;
}

header h1 img {
  height: 50px;
}

header nav ul {
  position: absolute;
  line-height: 1;
}

header nav ul li {
  font-weight: 600;
  vertical-align: middle;
}

header nav .sns {
  width: auto;
  height: 1.2em;
}

#toggle {
  display: none;
}

/* sp */

@media (max-width: 1024px) {
  header nav {
    visibility: hidden;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: .3s ease-in-out;
  }

  html.open {
    overflow: hidden;
  }

  .open nav {
    visibility: visible;
    opacity: 1;
  }

  header nav ul {
    top: 80px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
  }

  header nav ul li {
    display: block;
    font-size: 17px;
    margin: 32px 0;
    font-weight: 500;
  }

  /* toggle
  ------------------------------*/

  #toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 100;
    cursor: pointer;
  }

  #toggle div {
    position: relative;
  }

  #toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    left: 0;
    transition: 0.3s ease-in-out;
  }

  #toggle span:nth-child(1) {
    top: 5px;
  }

  #toggle span:nth-child(2) {
    top: 14px;
  }

  #toggle span:nth-child(3) {
    top: 23px;
  }

  /* toggle .open */

  .open #toggle span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
  }

  .open #toggle span:nth-child(2) {
    opacity: 0;
  }

  .open #toggle span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
  }
}

/*------------------------------
section
------------------------------*/

section {
  margin: 0 auto;
}

/*------------------------------
front-page
------------------------------*/

#cover {
  position: relative;
}

#cover .slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}



/*------------------------------
footer
------------------------------*/
footer {
  text-align: center;
  color: #333;
  padding: 120px 0 40px;
}

/*------------------------------
js
------------------------------*/

/* slick
------------------------------*/
.slick-dots {
  bottom: -40px;
  left: 0;
  width: auto;
}

.slick-dots li {
  margin: 0 4px;
  width: 32px;
  height: 4px;
}

.slick-dots li button:before {
  content: '';
  width: 32px;
  height: 4px;
  background: #eee;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background: #888;
}

/*------------------------------
wp
------------------------------*/
/* キャプション調整 */
.wp-block-image,
.wp-block-image figcaption {
  font-size: .8em;
  margin: 0;
}

/* カラムマージン調整 */
.wp-block-columns {
  margin: 0;
}

/* 引用調整 */
.wp-block-quote {
  border-left: solid 3px #333;
  padding-left: 30px;
}

.wp-block-quote cite a {
  font-style: normal;
  color: #999;
}

/* pagination
------------------------------*/
.page-link {
  text-align: center;
  margin-top: 80px;
  display: inline-block;
  width: 100%;
}

.page-link a {
  color: #333;
  margin: 0 20px;
}

.pagination {
  text-align: center;
  margin-top: 80px;
}

.page-numbers {
  display: inline-block;
  color: #666;
  font-size: 1em;
  letter-spacing: 0;
  margin: 0 10px;
  text-align: center;
  vertical-align: middle;
}

.page-numbers.current {
  color: #fff;
  background: #666;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  margin: 0 5px;
}

a.page-numbers:hover {
  color: #666;
}

/*------------------------------
wpcf7
------------------------------*/
span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
  border: none !important;
  color: #f98a6a;
  font-family: 'Noto Serif JP', serif;
  -webkit-font-smoothing: antialiased;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  text-align: center;
}

div.wpcf7 .ajax-loader {
  display: none;
}

div.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

/*------------------------------
1025px
------------------------------*/
@media (min-width: 1025px) {
  p {
    margin-top: 2em;
  }

  h2,
  h3,
  h4 {
    margin-top: 40px;
  }

  hr,
  .wp-block-separator {
    margin: 40px 0;
  }

  .btn {
    min-width: 200px;
    height: 56px;
    line-height: 54px;
  }

  /* header 1025px
  ------------------------------*/
  header {
    height: 100px;
  }

  header h1 {
    top: 20px;
  }

  header h1 img {
    height: 60px;
  }

  header nav ul {
    top: 40px;
    right: 0;
  }

  header nav ul li {
    display: inline-block;
    line-height: 1;
    margin: 0 0 0 40px;
  }

  /* front-page 1025px
  ------------------------------*/
  #cover .slide img {
    aspect-ratio: 16/9;
  }

  #cover .copy {
    font-size: 3em;
  }

}

/*------------------------------
container
------------------------------*/
.container {
  position: relative;
  width: min(1200px, 85%);
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .container {
    margin: 0 auto;
  }
}

/*------------------------------
display
------------------------------*/
@media (min-width: 1025px) {
  .sp {
    display: none !important
  }

  .sp-center {
    text-align: left;
  }

  .pc-center {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .pc {
    display: none !important
  }

  .sp-center {
    text-align: center;
  }

  .pc-center {
    text-align: left;
  }

}