@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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: 14px;
  color: #1c1c1c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.6;
  width: 100%;
}

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

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

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

li {
  list-style: none;
}

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;
}

small {
  font-size: 80%;
}

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;
  color: #000;
}

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;
}

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 {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

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

textarea {
  overflow: auto;
}

[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;
}

canvas {
  display: inline-block;
}

iframe {
  vertical-align: middle;
}

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

input,
select,
textarea {
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  outline: none;
  padding: 5px;
  width: 100%;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #39b8b8;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  font-size: 1.4rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
  width: auto;
}

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

.flex-nowrap {
  flex-wrap: nowrap;
}

.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-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #a0e0e0;
  color: #39b8b8;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #a0e0e0;
  color: #39b8b8;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.wp-pagenavi span.current {
  border: 0px;
  color: #fff;
  background: #7cd4d4;
  font-weight: normal;
}

.wp-pagenavi a:hover {
  border: 1px solid #39b8b8;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  position: relative;
}

.wp-pagenavi a.previouspostslink::after,
.wp-pagenavi a.nextpostslink::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  left: 50%;
  top: 50%;
  margin-top: -2px;
  margin-left: -4px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.wp-pagenavi a.previouspostslink::after {
  border-bottom: 1px solid #2baa3f;
  border-left: 1px solid #2baa3f;
  margin-left: -2px;
}

.wp-pagenavi a.nextpostslink::after {
  border-top: 1px solid #2baa3f;
  border-right: 1px solid #2baa3f;
}

.wp-pagenavi a.previouspostslink:hover::after,
.wp-pagenavi a.nextpostslink:hover::after {
  border-color: #fff;
}

.wp-caption-text,
.wp-caption,
.aligncenter,
.alignleft,
.alignright,
.sticky,
.gallery-caption,
.bypostauthor,
.screen-reader-text {
  font-weight: normal;
}

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

 user common css

////////////////////////*/
.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.bold {
  font-weight: bold;
}

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

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

.sp,
.sp02 {
  display: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

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

  .sp {
    display: block;
  }
}

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

  .sp02 {
    display: block;
  }
}

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

 header

////////////////////////*/
.header .gnav {
  width: 100%;
}

.header .gnav .nav-list {
  padding: 15px 0;
}

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

  .header .h-logo {
    padding: 10px 0;
  }

  .gnav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 999;
    height: 100vh;
    top: 0;
    right: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: all 0.5s;
    opacity: 0;
  }

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

  .header .gnav .nav-list {
    display: block !important;
    margin: 5px 0 0 0;
    padding: 20% 0;
    text-align: center;
  }

  .header .gnav .nav-list .nav-list__item {
    padding: 15px 0;
    line-height: 1.2;
  }
}

/* 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: #000;
    border-radius: 0 0 0 5px;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    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);
  }
}

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

footer

////////////////////////*/
.footer {
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.4;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 60px);
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
}

.contents h1 {
  max-width: 200px;
  margin: 0 auto 40px;
}

.contents p {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.contents p span {
  font-size: 0.8em;
  display: block;
}

@media screen and (max-width: 768px) {
  .main {
    min-height: calc(100vh - 120px);
  }
  .contents h1 {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .contents p {
    font-size: 1.8rem;
  }
}

.archive {
  position: absolute;
  right: 60px;
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 20px;
}

.archive-link {
  display: block;
  font-weight: bold;
  text-decoration: underline;
  font-size: 0.9em;
  color: #d45f13;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .archive {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px 20px;
  }

  .archive-link {
    font-size: 1.2rem;
  }
}
