@charset "UTF-8";
:root {
  /* Font */
  --base-font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

:root {
  /* Color */
  --base-color: #FFFFFF;
  --white-color: #FFFFFF;
  --white-color2: rgba( 255, 255, 255, 0.9);
  --black-color: #333333;
  --gray-color: #f5f5f5;
  --pink-color: #EE99B7;
  --pink-color2: #CF7B8B;
  --pink-color3: #F572C4;
  --red-color: #f74e79;
  --red-color2: #ee527a;
  --red-color3: #ffeded;
  --red-color4: #ff999a;
  --shadow-color1: rgba( 0, 0, 0, 0.4);
}

.fade.active {
  transform: translateY(20%);
  opacity: 0;
  -webkit-animation: fade 0.8s ease-in-out forwards;
          animation: fade 0.8s ease-in-out forwards;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* reset-css */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
img,
q,
s,
small,
strong,
sub,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

button {
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0;
}

/* reset css end */
/* base */
* {
  box-sizing: border-box;
}

img {
  height: auto;
  vertical-align: bottom;
}

body {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--black-color);
  background-color: var(--base-color);
  min-height: 100%;
  height: 100%;
  z-index: 1;
  overflow-x: hidden;
}

html {
  color: var(--black-color);
  font-family: var(--base-font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}
@media screen and (min-width: 1134px) {
  html {
    scroll-padding-top: 80px;
  }
}
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--black-color);
  font-family: var(--base-font-family);
  transition: 0.4s box-shadow;
}

a:hover {
  opacity: 0.8;
}

p, span {
  color: var(--black-color);
  font-family: var(--base-font-family);
}

ul {
  list-style: none;
}

strong, h3 {
  font-weight: bold;
}

.main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 3%;
  margin: 0 auto;
}

button, input, select, textarea, .header-title-only, .header-title-area, .header-image-area, .main-content-area, .topmain-welcome-area abbr, .textwidget abbr, .entry-content abbr, .comment-content abbr, .topmain-welcome-area dfn, .textwidget dfn, .entry-content dfn, .comment-content dfn, .topmain-welcome-area acronym, .textwidget acronym, .entry-content acronym, .comment-content acronym, .topmain-welcome-area table, .textwidget table, .entry-content table, .comment-content table, .topmain-welcome-area th, .textwidget th, .entry-content th, .comment-content th, .topmain-welcome-area td, .textwidget td, .entry-content td, .comment-content td, .page-links > a, .nav-single, .nav-previous a, .nav-next a, .comments-title, .comment-reply-title, article.comment, .comment .children, .nocomments, .archive-post, .widget, .widget-title, .post-sitemap-list .widget-title, .post-sitemap-list ul li, .widget_archive ul li, .widget_categories ul li, .widget_nav_menu ul li, .widget_pages ul li, .widget_meta ul li, .widget_recent_entries ul li, .widget_rss ul li, .widget_recent_comments ul li, .widget_tagposts ul li, .widget_tagpages ul li, .widget_catposts ul li, .hw_link1, .hw_link2, .hw_link2 a, .post-sitemap-list .children, .widget_nav_menu .sub-menu, .widget_pages .children, .widget_categories .children, .topmain-welcome-area pre, .textwidget pre, .entry-content pre, .comment-content pre, .main-content-header .main-content-title, .topmain-widget-area .widget-title, .post-sitemap-list .widget-title, .sidebar-left .widget-title, .sidebar-right .widget-title, .comments-title, .comment-reply-title {
  border-color: #ff999a;
}

/* header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  transition: all 0.3s;
}
@media screen and ( min-width: 1130px ) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header-sitemap {
  position: absolute;
  top: 4px;
  right: 12px;
  display: none;
}
@media screen and ( min-width: 576px ) {
  .header-sitemap {
    display: block;
  }
}
.header-sitemap span {
  color: var(--red-color);
}
.header-sitemap::after {
  content: url(http://npoatto.com/wp-content/uploads/2022/04/img_icon_arrow_s.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.48);
}
.header-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 60px;
  margin: 6px auto;
}
@media screen and ( min-width: 1130px ) {
  .header-title {
    margin: 10px auto;
    height: 80px;
  }
}
@media screen and ( min-width: 1254px ) {
  .header-title {
    margin: 16px auto 0 auto;
    height: 100px;
  }
}
.header-title__link {
  display: block;
  height: 100%;
  width: auto;
}
.header-title__link-img {
  width: auto;
  height: 100%;
}
.header-nav {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white-color);
  border: solid 1px #ddd;
  border-radius: 5px;
}
@media screen and ( min-width: 920px ) {
  .header-nav {
    display: block;
    width: 810px;
  }
}
@media screen and ( min-width: 1130px ) {
  .header-nav {
    margin-top: 40px;
  }
}
.header-nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.header-nav-list li a {
  line-height: 3.6;
  font-size: 1.4rem;
  transition: 0.2s;
  position: relative;
  padding: 16px 10px;
  transition: 0.2s;
}
.header-nav-list li a:hover {
  background: var(--red-color);
  color: var(--white-color);
}
.header-nav-mini {
  background: var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-nav-mini-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-nav-mini-list li {
  width: 100%;
  border-bottom: 2px dotted var(--white-color);
}
.header-nav-mini-list li a {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: var(--white-color);
  transition: 0.2s;
  line-height: 4;
}
.header-nav-mini-list li a:hover {
  background: var(--white-color);
  transition: 0.3s;
  color: var(--red-color);
}
.header-nav-mini .header-sitemap-sp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and ( min-width: 576px ) {
  .header-nav-mini .header-sitemap-sp {
    display: none;
  }
}
.header-nav-mini .header-sitemap-sp span {
  color: var(--red-color);
  line-height: 1.8;
}
.header-nav-mini .header-sitemap-sp::after {
  content: url(http://npoatto.com/wp-content/uploads/2022/04/img_icon_arrow_s.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.48);
}
.header .hamburger {
  position: fixed;
  left: -180px;
  top: 0;
  width: 200px;
  height: 100vh;
  background: var(--red-color);
  transition: all 0.3s;
  z-index: 20;
  overflow: auto;
  -webkit-animation: close 0.3s forwards;
          animation: close 0.3s forwards;
}
.header .hamburger.nav-open {
  -webkit-animation: open 0.4s forwards;
          animation: open 0.4s forwards;
}
@-webkit-keyframes open {
  0% {
    background: var(--red-color);
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes open {
  0% {
    background: var(--red-color);
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes close {
  0% {
    left: 0;
    background: var(--red-color);
    opacity: 1;
  }
  100% {
    left: -200px;
    opacity: 0;
  }
}
@keyframes close {
  0% {
    left: 0;
    background: var(--red-color);
    opacity: 1;
  }
  100% {
    left: -200px;
    opacity: 0;
  }
}
.header .hamburger_btn {
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: fixed;
  left: 0px;
  top: 6px;
  z-index: 30;
  padding: 18px;
}
@media screen and ( min-width: 920px ) {
  .header .hamburger_btn {
    display: none;
  }
}
.header .hamburger_btn .hamburger_line {
  position: relative;
  display: block;
  height: 4px;
  background-color: var(--red-color);
  transition: all 0.3s;
}
.header .hamburger_btn .hamburger_line::before {
  position: absolute;
  top: -8px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--red-color);
  transition: all 0.3s;
}
.header .hamburger_btn .hamburger_line::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--red-color);
  transition: all 0.3s;
}
.header .hamburger_btn.nav-open .hamburger_line {
  background-color: transparent;
}
.header .hamburger_btn.nav-open .hamburger_line::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.2s;
  background-color: var(--white-color);
}
.header .hamburger_btn.nav-open .hamburger_line::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.2s;
  background-color: var(--white-color);
}

/* フッター */
.footer-widget-area {
  margin-top: 30px;
  padding-top: 30px;
  background-color: #f5f5f5;
}

footer a {
  color: var(--red-color2);
}

.footer-widget-area .widget {
  border-top: none;
}

.footer-widget-area .widget-title {
  padding: 0.4em;
  border-top: dotted 3px #ee527a;
  border-bottom: dotted 3px #ee527a;
}

@media screen and (max-width: 767px) {
  .footer-widget-area .component-inner {
    padding: 0 3%;
  }
}
/*# sourceMappingURL=style.css.map */