@charset "UTF-8";
/* 
Theme Name: xxx
Author: xxx
Description: xxx
Version: xxx
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

a {
  background-color: transparent;
}

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

b, strong {
  font-weight: bolder;
}

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

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

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

body {
  padding-top: var(--header-height);
  background: #fafafa;
  color: #111;
  font-family: var(--sans-serif);
  line-height: 1.8;
}
body.scroll-lock {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

img {
  max-width: 100%;
  display: block;
}

.ta_center {
  text-align: center;
}
.ta_right {
  text-align: right;
}
.ta_left {
  text-align: left;
}

.container {
  width: calc(100% - 8vw);
  margin: 0 auto;
}
.container.w1200 {
  max-width: 1200px;
}
.container.w980 {
  max-width: 980px;
}
.container.w720 {
  max-width: 720px;
}

.link {
  margin: 40px 0;
}
.link a {
  width: calc(100% - 8vw);
  margin: 0 auto;
  padding: 0.5em 0;
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--gray02);
  color: #666;
  position: relative;
  transition: color 0.2s;
}
.link a span {
  position: relative;
  z-index: 1;
}
.link a::before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--gray02);
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: width 0.2s, opacity 0.2s;
}
.link a:hover {
  color: #111;
  border-color: #111;
}
.link a:hover::before {
  width: 100%;
  opacity: 1;
}

header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  z-index: 100;
}
header::after {
  content: "";
  width: calc(100% + 40px);
  height: 1px;
  margin-left: -20px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  z-index: -1;
}
header .wrap {
  width: 100%;
  height: 100%;
  padding: 0 2vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  z-index: 1;
}
header .wrap .logo h1 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
}
header .wrap .logo h1 a {
  text-decoration: none;
  color: #111;
  transition: opacity 0.2s;
}
header .wrap .logo h1 a:hover {
  opacity: 0.6;
}
header .wrap .nav nav ul {
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
header .wrap .nav nav ul li a {
  text-decoration: none;
  text-align: center;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.875rem;
  color: #111;
  transition: opacity 0.2s;
}
header .wrap .nav nav ul li a:hover {
  opacity: 0.6;
}
header button.btnHnav {
  display: none;
  width: 60px;
  height: 60px;
  padding: 0;
  background: none;
  border: none;
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 1;
  cursor: pointer;
}
header button.btnHnav span {
  width: 40px;
  height: 2px;
  display: block;
  background: #111;
  position: absolute;
  left: 10px;
  top: calc(50% - 1px);
  transition: background 0s 0.2s;
}
header button.btnHnav span::before, header button.btnHnav span::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #111;
  position: absolute;
  z-index: 1;
}
header button.btnHnav span::before {
  top: -10px;
  transition: top 0.2s 0.2s ease, transform 0.2s 0s ease;
}
header button.btnHnav span::after {
  bottom: -10px;
  transition: bottom 0.2s 0.2s ease, transform 0.2s 0s ease;
}
header button.btnHnav.active span {
  background: transparent;
}
header button.btnHnav.active span::before {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s 0s ease, transform 0.2s 0.2s ease;
}
header button.btnHnav.active span::after {
  transform: rotate(-45deg);
  bottom: 0;
  transition: bottom 0.2s 0s ease, transform 0.2s 0.2s ease;
}

footer {
  padding: 60px 0;
  background: var(--gray);
}
footer .copy p {
  margin: 0;
  text-align: center;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  color: #666;
}
footer .nav {
  margin: 0 0 20px;
}
footer .nav nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
footer .nav nav ul + ul {
  margin-top: 10px;
}
footer .nav nav ul li a {
  padding: 0.5em 0.25em;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  color: #111;
  font-size: 0.75rem;
  position: relative;
}
footer .nav nav ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background: #111;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
footer .nav nav ul li a:hover::after {
  width: 100%;
}

main {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #666;
}
main article > *:first-child {
  margin-top: 0;
}
main article > *:last-child {
  margin-bottom: 0;
}
main :is(h1, h2, h3, h4, h5) {
  font-family: var(--sans-serif);
  font-weight: 400;
  color: #111;
}
main h2 {
  margin: 4em 0 2em;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
main h2 + p.caption {
  margin: -36px 0 40px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}
main h3 {
  margin: 4em 0 2em;
  padding-left: calc(1em - 4px);
  font-size: 1rem;
  border-left: 4px solid #111;
}
main p img {
  margin: 0 1em 1em;
}
main p img.imgL {
  float: left;
}
main p img.imgR {
  float: right;
}
main ul, main ol {
  margin: 3em 0;
  clear: both;
}
main ul li, main ol li {
  margin-top: 0.5em;
}
main ul:not(ul), main ol:not(ul) {
  padding-left: 0;
  list-style: none;
  counter-reset: count 0;
}
main ul:not(ul) li, main ol:not(ul) li {
  position: relative;
  padding-left: 40px;
}
main ul:not(ul) li::before, main ol:not(ul) li::before {
  content: counter(count) " ）";
  counter-increment: count 1;
  text-align: right;
  width: 40px;
  display: block;
  position: absolute;
  left: 0;
}
main table {
  width: 100%;
  margin: 3em 0;
  border-collapse: collapse;
}
main table tr :is(th, td) {
  padding: 0.5em;
  border: 1px solid #bbb;
}
main blockquote {
  margin: 3em 0;
  padding: 40px;
  border-left: 4px solid var(--gray02);
  background: #fff;
  position: relative;
}
main blockquote::before, main blockquote::after {
  content: "\e244";
  font-family: material icons;
  color: var(--gray02);
  font-size: 36px;
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
}
main blockquote::before {
  transform: rotate(180deg);
  top: 20px;
  left: 10px;
}
main blockquote::after {
  bottom: 20px;
  right: 10px;
}
main pre {
  margin: 3em 0;
  padding: 20px;
  border: 1px solid var(--gray02);
}
main figure {
  margin: 3em 0;
}
main figure figcaption {
  margin-top: 0.5em;
  font-size: 0.75rem;
}

.pager {
  margin-top: 4vw;
}
.pager .wp-pagenavi {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0;
}
.pager .wp-pagenavi span, .pager .wp-pagenavi a {
  display: inline-block;
  height: 24px;
  line-height: 24px;
}
.pager .wp-pagenavi span {
  color: #111;
}
.pager .wp-pagenavi span.pages {
  display: none;
}
.pager .wp-pagenavi span.current {
  padding: 0 12px;
}
.pager .wp-pagenavi a {
  text-decoration: none;
  color: #999;
}
.pager .wp-pagenavi a:hover {
  color: #111;
}
.pager .wp-pagenavi a.page {
  padding: 0 12px;
  text-align: center;
}
.pager .wp-pagenavi a.nextpostslink, .pager .wp-pagenavi a.previouspostslink {
  width: 24px;
  display: block;
  text-align: center;
  text-indent: -9999px;
  background: var(--gray02);
  color: #fff;
  position: relative;
  transition: background 0.2s;
}
.pager .wp-pagenavi a.nextpostslink::before, .pager .wp-pagenavi a.previouspostslink::before {
  content: "";
  font-family: material icons;
  font-size: 1rem;
  text-align: center;
  text-indent: 0;
  line-height: 24px;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
}
.pager .wp-pagenavi a.nextpostslink:hover, .pager .wp-pagenavi a.previouspostslink:hover {
  background: #333;
}
.pager .wp-pagenavi a.nextpostslink {
  margin-left: 20px;
}
.pager .wp-pagenavi a.nextpostslink::before {
  content: "\e409";
}
.pager .wp-pagenavi a.previouspostslink {
  margin-right: 20px;
}
.pager .wp-pagenavi a.previouspostslink::before {
  content: "\e408";
}
.pager .wp-pagenavi a.first, .pager .wp-pagenavi a.last {
  display: none;
}

#commonHeader {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fafafa;
  color: #111;
}
#commonHeader > .bg {
  width: 100%;
  height: 100%;
  background: #eee;
  position: absolute;
  top: 0;
  left: 0;
}
#commonHeader > .bg picture {
  width: 100%;
  height: 100%;
  display: block;
}
#commonHeader > .bg picture img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#commonHeader .wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
#commonHeader .wrap h1 {
  margin: 0;
  text-align: center;
  text-indent: 0.05em;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 600;
}
#commonHeader .wrap h1 + p.caption {
  margin: 12px 0 0;
  text-align: center;
  text-indent: 0.05em;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
}

#breadClumbList {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
#breadClumbList .aioseo-breadcrumbs {
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  gap: 1em;
  white-space: nowrap;
  overflow-y: auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
#breadClumbList .aioseo-breadcrumbs span {
  display: inline-block;
}
#breadClumbList .aioseo-breadcrumbs span.aioseo-breadcrumb a {
  color: #666;
  text-decoration: none;
}
#breadClumbList .aioseo-breadcrumbs span.aioseo-breadcrumb a:hover {
  text-decoration: underline;
}
#breadClumbList .aioseo-breadcrumbs span.aioseo-breadcrumb-separator {
  color: #999;
}

@media screen and (min-width: 768px) {
  .onlySP {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .onlyPC {
    display: none;
  }
  body {
    padding-top: var(--header-height-sp);
  }
  header {
    height: var(--header-height-sp);
  }
  header .wrap {
    padding: 0 20px;
    justify-content: flex-start;
    border-bottom: 1px solid #eee;
  }
  header .wrap .logo h1 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
  }
  header .wrap .logo h1 a {
    text-decoration: none;
    color: #111;
    transition: opacity 0.2s;
  }
  header .wrap .logo h1 a:hover {
    opacity: 0.6;
  }
  header .wrap .nav {
    width: 0;
    height: calc(100vh - var(--header-height-sp));
    position: absolute;
    top: var(--header-height-sp);
    right: 0;
    transform: translate(100%, 0);
    opacity: 0;
  }
  header .wrap .nav.sp {
    width: 100%;
    transition: transform 0.4s, opacity 0.2s;
  }
  header .wrap .nav.active {
    transform: translate(0, 0);
    opacity: 1;
  }
  header .wrap .nav nav {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    overflow-y: auto;
  }
  header .wrap .nav nav ul {
    flex-direction: column;
    gap: 0;
  }
  header .wrap .nav nav ul li {
    border-bottom: 1px solid #eee;
  }
  header .wrap .nav nav ul li a {
    padding: 1.25em;
    display: block;
    text-align: left;
    position: relative;
    transition: background 0.4s;
  }
  header .wrap .nav nav ul li a::after {
    content: "\e409";
    font-family: material icons;
    font-weight: 300;
    color: #999;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    transition: right 0.4s;
  }
  header .wrap .nav nav ul li a:hover {
    background: #f5f5f5;
    opacity: 1;
  }
  header .wrap .nav nav ul li a:hover::after {
    right: 0;
  }
  header button.btnHnav {
    display: block;
  }
  footer {
    padding: 8vw 0;
  }
  footer .nav {
    margin: 0 0 8vw;
  }
  footer .nav nav ul {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-top: 1px solid #ccc;
  }
  footer .nav nav ul + ul {
    margin-top: 0;
    border-top: none;
  }
  footer .nav nav ul li {
    border-bottom: 1px solid #ccc;
  }
  footer .nav nav ul li a {
    padding: 1.25em 0.5em;
    display: block;
    text-align: left;
    font-size: 0.75rem;
    transition: padding 0.4s;
  }
  footer .nav nav ul li a::after {
    bottom: -1px;
    left: 0;
    transform: translate(0, 0);
    transition: width 0.4s;
  }
  footer .nav nav ul li a::before {
    content: "\e409";
    font-family: material icons;
    font-weight: 300;
    color: #999;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    right: 4px;
    transition: right 0.4s;
  }
  footer .nav nav ul li a:hover {
    padding-left: 0.75em;
  }
  footer .nav nav ul li a:hover::before {
    right: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .onlyPC {
    display: none;
  }
}
input[type=text], input[type=email], input[type=number], input[type=tel], input[type=date], input[type=search], input[type=password], select, textarea {
  margin: 0;
  padding: 0 0.75em;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ddd;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  display: inline-block;
}
input[type=text]:not(textarea), input[type=email]:not(textarea), input[type=number]:not(textarea), input[type=tel]:not(textarea), input[type=date]:not(textarea), input[type=search]:not(textarea), input[type=password]:not(textarea), select:not(textarea), textarea:not(textarea) {
  line-height: 38px;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, input[type=tel]::placeholder, input[type=date]::placeholder, input[type=search]::placeholder, input[type=password]::placeholder, select::placeholder, textarea::placeholder {
  color: #bbb;
}
input[type=text]:hover, input[type=email]:hover, input[type=number]:hover, input[type=tel]:hover, input[type=date]:hover, input[type=search]:hover, input[type=password]:hover, select:hover, textarea:hover {
  border-color: #bbb;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

textarea {
  padding: 0.5em 0.75em;
  height: 120px;
  line-height: 1.5;
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
input[type=checkbox] + span, input[type=radio] + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
}
input[type=checkbox] + span:hover, input[type=radio] + span:hover {
  color: var(--blue);
}
input[type=checkbox] + span::before, input[type=radio] + span::before {
  content: "";
  font-family: material icons;
  font-size: 24px;
  color: var(--blue);
  text-align: center;
  line-height: 24px;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
}
input[type=checkbox]:checked + span, input[type=radio]:checked + span {
  color: var(--blue);
  font-weight: 600;
}
input[type=checkbox]:checked + span::before, input[type=radio]:checked + span::before {
  font-weight: 300;
}

input[type=checkbox] + span::before {
  content: "\e835";
}
input[type=checkbox]:checked + span::before {
  content: "\e834";
}

input[type=radio] + span::before {
  content: "\e836";
}
input[type=radio]:checked + span::before {
  content: "\e837";
}

*:has(> select) {
  width: 100%;
  margin: 0;
  border: 1px solid #ddd;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  display: inline-block;
  position: relative;
}
*:has(> select)::after {
  content: "\e5cf";
  font-family: material icons;
  text-align: center;
  font-size: 18px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
*:has(> select):hover {
  border-color: #bbb;
}
*:has(> select):hover::after {
  color: #111;
}
*:has(> select) select {
  border: none;
  background: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.btn_wrap {
  position: relative;
}
.btn_wrap::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  background: var(--gray02);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s;
}
.btn_wrap:hover::before {
  width: 100%;
  opacity: 1;
}
.btn_wrap :is(input[type=submit], button).btn_submit {
  width: 100%;
  height: 40px;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: var(--gray02);
  mix-blend-mode: multiply;
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

:root {
  --sans-serif: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --header-height: 80px;
  --header-height-sp: 60px;
  --red: #EA4335;
  --red-rgb: 219,68,55;
  --blue: #4285F4;
  --blue-rgb: 66,133,244;
  --blue02: #1145e9;
  --blue02-rgb: 17,69,233;
  --yellow: #FBBC05;
  --yellow-rgb: 244,180,0;
  --green: #34A853;
  --green-rgb: 15,157,88;
  --pink: #ffe5dd;
  --pink-rgb: 255,229,221;
  --gray: #f5f3ef;
  --gray-rgb: 245,243,239;
  --gray02: #ebe8e0;
  --gray02-rgb: 235,232,224;
}

::-moz-selection {
  color: #fff;
  background-color: #3abec1;
}

::selection {
  color: #fff;
  background-color: #3abec1;
}/*# sourceMappingURL=style.css.map */