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

:after,
:before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

address,
blockquote,
dl,
figure,
form,
iframe,
ol,
p,
pre,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

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

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;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled],
button[disabled] {
  cursor: default;
}

[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,
option {
  padding: 0;
}

fieldset {
  margin: 0;
  border: 0;
  min-width: 0;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden],
template {
  display: none;
}

* {
  transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);
}

body {
  color: #201F1D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 190%;
  font-feature-settings: "palt";
  background-color: #EBE9E6;
}

a {
  color: #201F1D;
}

a:hover {
  color: #201F1D;
}

/* =================================================================

    共通

================================================================= */
.en {
  font-family: all-round-gothic, sans-serif;
}

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

.fadein {
  transition: 1s;
  opacity: 0;
  transform: translatey(50px);
}

.fadein.animated {
  opacity: 1;
  transform: translatey(0px);
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #EBE9E6;
  z-index: 1;
}
header .logoarea {
  display: flex;
  gap: 16px;
  padding: 24px;
}
header .logoarea h1 {
  font-size: 12px;
}
header .menuarea {
  margin-left: auto;
  margin-right: 70px;
}
header .menuarea .btn {
  padding-top: 16px;
}
header .menuarea .btn a {
  display: flex;
  gap: 8px;
  background: #201F1D;
  border-radius: 4px;
  line-height: 1;
  padding: 16px 20px 16px 28px;
}
header .menuarea .btn a .dis {
  color: #E1FF00;
  font-size: 11px;
}
header .menuarea .btn a .blank {
  padding-left: 4px;
}

.hamburger-button {
  position: fixed;
  top: 34px;
  right: 24px;
  z-index: 1001;
  width: 25px;
  height: 14px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger-button__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #201F1D;
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}
.hamburger-button__line:nth-child(1) {
  top: 0;
}
.hamburger-button__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-button__line:nth-child(3) {
  bottom: 0;
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #201F1D;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}
.global-nav__inner {
  padding: 24px 0 0 24px;
}
.global-nav__inner .in_logo {
  width: 149px;
}
.global-nav__inner .menuarea {
  margin-top: 68px;
  color: #fff;
}
.global-nav__inner .menuarea .base {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
}
.global-nav__inner .menuarea .base .left {
  width: 15%;
}
.global-nav__inner .menuarea .base .left .en {
  font-size: 20px;
  font-weight: 900;
}
.global-nav__inner .menuarea .base .right {
  width: 85%;
}
.global-nav__inner .menuarea .base .right ul {
  gap: 8px;
}
.global-nav__inner .menuarea .base .right ul li {
  float: left;
  margin: 0 16px 16px 0;
}
.global-nav__inner .menuarea .base .right ul li a span {
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  border: 1px solid #777;
  line-height: 1;
  padding: 4px 16px 6px;
}
.global-nav__inner .menuarea .base .right ul li a:hover span {
  color: #E1FF00;
  border: 1px solid #E1FF00;
}

body.is-nav-active .hamburger-button .hamburger-button__line {
  background-color: #ffffff;
}
body.is-nav-active .hamburger-button .hamburger-button__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
body.is-nav-active .hamburger-button .hamburger-button__line:nth-child(2) {
  opacity: 0;
}
body.is-nav-active .hamburger-button .hamburger-button__line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
body.is-nav-active .global-nav {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0s;
}
body.is-nav-active .global-nav .in_logo {
  width: 149px;
}

/* =================================================================

    トップページ

================================================================= */
#contents {
  padding-top: 70px;
}
#contents .list.inner {
  width: 100%;
  padding: 20px;
}
#contents .list .base {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
}
#contents .list .blk {
  width: 350px;
  flex-shrink: 0;
  margin-bottom: 24px;
}
#contents .list .blk a {
  display: block;
  text-decoration: none;
}
#contents .list .blk .info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 0 2px;
}
#contents .list .blk .info a:hover {
  opacity: 0.5;
}
#contents .list .blk .info .sitename {
  font-size: 13px;
  font-weight: bold;
}
#contents .list .blk .info .sitename p {
  line-height: 160%;
}
#contents .list .blk .info .links {
  display: flex;
  gap: 16px;
}
#contents .list .blk .info .links .icon {
  width: 16px;
  line-height: 0;
}
#contents .list .blk .info .links .icon .simplefavorite-button {
  width: 24px;
  height: 24px;
  text-indent: -99999px;
  background: url(/wp-content/themes/gallery/assets/images/icon_fav.svg) no-repeat center/24px 24px;
}
#contents .list .blk .info .links .icon .simplefavorite-button.active {
  opacity: 0.1;
}
#contents .list .image-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
#contents .list .slide-image {
  width: 100%;
  min-height: 500px;
  height: auto;
  display: block;
  position: relative;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#contents .wp-pagenavi {
  margin: 40px auto;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #201F1D;
}
#contents .wp-pagenavi a {
  color: #201F1D;
}
#contents .wp-pagenavi span.current,
#contents .wp-pagenavi a.page {
  margin: 0 10px 0 0;
  border: solid 1px #eee;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  line-height: 64px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
#contents .wp-pagenavi span.current {
  border: none;
  background: #201F1D;
  color: #fff;
}
#contents .wp-pagenavi a.page {
  background: none;
}
#contents .wp-pagenavi a.page:hover {
  background: #201F1D;
  color: #fff;
}
#contents .wp-pagenavi .first,
#contents .wp-pagenavi .extend {
  margin-right: 10px;
}
#contents .wp-pagenavi .previouspostslink,
#contents .wp-pagenavi .nextpostslink {
  display: none;
}

/* =================================================================

    フッター

================================================================= */
footer {
  background: #201F1D;
  padding: 140px 0 100px;
  color: #fff;
  margin-top: 100px;
}
footer .inner {
  width: 1100px;
  margin: auto;
}
footer .inner .main {
  display: flex;
  justify-content: space-between;
}
footer .inner .main .submit a {
  display: block;
  background: #fff;
  border-radius: 4px;
  padding: 8px 48px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
}
footer .inner .main .submit a:hover {
  background: #E1FF00;
}
footer .inner .foot_menu {
  margin-top: 100px;
}
footer .inner .foot_menu ul {
  display: flex;
  gap: 24px;
}
footer .inner .foot_menu ul li a {
  color: #777;
  font-size: 13px;
}
footer .inner .foot_menu ul li a:hover {
  color: #E1FF00;
}

/* =================================================================

    詳細

================================================================= */
.single .inner {
  width: 1100px;
  margin: auto;
  padding-top: 80px;
}
.single .inner .ttl {
  margin-bottom: 80px;
}
.single .inner .ttl h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.single .inner .ttl .url {
  font-size: 13px;
}
.single .inner .ttl .url a {
  color: #777;
}
.single .inner .ttl .caution {
  background: #201F1D;
  padding: 16px;
  border-radius: 4px;
  margin-top: 16px;
  text-align: center;
  color: #E1FF00;
}
.single .inner .body {
  display: flex;
  gap: 64px;
}
.single .inner .body .thum {
  width: 40%;
}
.single .inner .body .thum img {
  width: 100%;
  height: auto;
}
.single .inner .body .info {
  width: 60%;
  padding-top: 40px;
}
.single .inner .body .info .base {
  margin-bottom: 16px;
  clear: both;
  overflow: hidden;
}
.single .inner .body .info .base .left .en {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.single .inner .body .info ul {
  gap: 8px;
}
.single .inner .body .info ul li {
  float: left;
  margin: 0 16px 16px 0;
}
.single .inner .body .info ul li a span {
  border-radius: 100px;
  color: #201F1D;
  font-size: 12px;
  background: #ffffff;
  line-height: 1;
  padding: 4px 16px 6px;
}
.single .inner .body .info ul li a:hover span {
  color: #fff;
  background: #201F1D;
}
.single .btnarea {
  border-top: 1px solid #cdccc5;
  margin-top: 60px;
  padding-top: 64px;
  display: flex;
  gap: 24px;
}
.single .btnarea a {
  background: #fff;
  border-radius: 100px;
  padding: 16px;
  text-align: center;
}
.single .btnarea a:hover {
  opacity: 0.6;
}
.single .btnarea .return a {
  padding: 16px 40px;
}
.single .caution {
  font-size: 12px;
  margin-top: 40px;
}

.pages {
  width: 800px;
  margin: auto;
  padding: 40px 0 120px;
}

.submit h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.submit p {
  margin-bottom: 8px;
}
.submit span.caution {
  font-size: 12px;
  color: #777;
  display: block;
  margin-bottom: 40px;
}
.submit input,
.submit textarea {
  width: 100%;
  border-radius: 4px;
  padding: 12px 24px;
  margin-bottom: 32px;
  background: #c6c4c1;
}
.submit textarea {
  height: 100px;
}
.submit input[type=submit] {
  width: 200px;
  border-radius: 100px;
  padding: 16px;
  margin-bottom: 32px;
  background: #201F1D;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #EBE9E6;
    z-index: 1;
  }
  header .logoarea {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
  header .logoarea h1 {
    font-size: 12px;
    display: none;
  }
  header .menuarea {
    margin-left: auto;
    margin-right: 70px;
  }
  header .menuarea .btn {
    padding-top: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  header .menuarea .btn a {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: #201F1D;
    border-radius: 8px 8px 0 0;
    line-height: 1;
    padding: 16px 20px 16px 28px;
  }
  header .menuarea .btn a .dis {
    color: #E1FF00;
    font-size: 11px;
  }
  header .menuarea .btn a .blank {
    padding-left: 4px;
  }
  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #201F1D;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .global-nav__inner {
    padding: 24px 0 0 24px;
  }
  .global-nav__inner .in_logo {
    width: 149px;
  }
  .global-nav__inner .menuarea {
    margin-top: 32px;
    margin-right: 0;
    color: #fff;
  }
  .global-nav__inner .menuarea .base {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
  }
  .global-nav__inner .menuarea .base .left {
    width: 100%;
  }
  .global-nav__inner .menuarea .base .left .en {
    font-size: 15px;
    font-weight: 900;
  }
  .global-nav__inner .menuarea .base .right {
    width: 100%;
  }
  .global-nav__inner .menuarea .base .right ul {
    gap: 6px;
  }
  .global-nav__inner .menuarea .base .right ul li {
    float: left;
    margin: 0 6px 6px 0;
  }
  .global-nav__inner .menuarea .base .right ul li a span {
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    border: 1px solid #777;
    line-height: 1;
    padding: 4px 16px 6px;
  }
  .global-nav__inner .menuarea .base .right ul li a:hover span {
    color: #E1FF00;
    border: 1px solid #E1FF00;
  }
  /* =================================================================

      フッター

  ================================================================= */
  footer {
    background: #201F1D;
    padding: 64px 24px 120px;
    margin-top: 80px;
  }
  footer .inner {
    width: 100%;
    margin: auto;
  }
  footer .inner .main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  footer .inner .main .submit {
    width: 50%;
    margin-top: 40px;
  }
  footer .inner .main .submit a {
    display: block;
    background: #fff;
    border-radius: 4px;
    padding: 4px 48px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
  }
  footer .inner .main .submit a:hover {
    background: #E1FF00;
  }
  footer .inner .foot_menu {
    margin-top: 40px;
  }
  footer .inner .foot_menu ul {
    display: flex;
    gap: 24px;
  }
  footer .inner .foot_menu ul li a {
    color: #777;
    font-size: 10px;
  }
  footer .inner .foot_menu ul li a:hover {
    color: #E1FF00;
  }
}
/* =================================================================

    その他

================================================================= */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
br.is-sp-only {
  display: none;
}/*# sourceMappingURL=style.css.map */